diff options
author | Franck Cuny <franck@fcuny.net> | 2024-01-21 13:43:33 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-01-21 13:43:33 -0800 |
commit | 25936fb786b4f436e9b3105e66b745d03fb58414 (patch) | |
tree | 612b1f33b822db454c8976fd63d15a881e334b1b /flake | |
parent | fix linter issues (diff) | |
download | world-25936fb786b4f436e9b3105e66b745d03fb58414.tar.gz |
disable linter for yaml
This is causing `nix flake check` to fail on CI, and I don't know why. I don't have issues locally. Commenting this out until I have a fix.
Diffstat (limited to '')
-rw-r--r-- | flake/devshell.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/flake/devshell.nix b/flake/devshell.nix index 13c0281..886d7c1 100644 --- a/flake/devshell.nix +++ b/flake/devshell.nix @@ -61,7 +61,11 @@ shellcheck.enable = true; shfmt.enable = true; taplo.enable = true; - yamlfmt.enable = true; + # I don't understand why this is causing issues in CI. When + # I run `nix flake check` locally I don't get any issues but + # CI is failing with errors in some of the workflows. + # Commenting this until I have a proper solution + # yamlfmt.enable = true; }; }; |