We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b76d3 commit 30d44d8Copy full SHA for 30d44d8
1 file changed
ci/checks/formatting.nix
@@ -5,8 +5,6 @@
5
}:
6
7
pkgs.runCommand "formatting-check" { } ''
8
- ${
9
- pkgs.lib.getExe self.formatter.${pkgs.stdenv.hostPlatform.system}
10
- } --no-cache --fail-on-change ${../../.}
+ find ${../../.} -name "*.nix" -print0 | xargs -0 ${pkgs.lib.getExe pkgs.nixfmt} --check
11
touch $out
12
''
0 commit comments