diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-11-15 19:01:47 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-11-15 19:02:52 -0800 |
| commit | f36c1fc13413bdd6c7105ba7f72e42f77c82efd6 (patch) | |
| tree | 972d70dfd89d0244346928f32c436794e3987855 /flake.nix | |
| parent | fix(modules/gitea): next time I'll learn to read the documentation (diff) | |
| download | infra-f36c1fc13413bdd6c7105ba7f72e42f77c82efd6.tar.gz | |
fix(flake): add extra argument for the `check-yaml' hook
Drone's CI configuration is in YAML and can contain multiple
configurations (documents). By default the check does not allow this, so
let's update the configuration by adding the flag
`--allow-multiple-documents`.
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -117,7 +117,7 @@ check-yaml = { enable = true; - entry = "${pkgs.python3Packages.pre-commit-hooks}/bin/check-yaml"; + entry = "${pkgs.python3Packages.pre-commit-hooks}/bin/check-yaml --allow-multiple-documents"; types = [ "yaml" ]; }; |
