flake-template-hell/templates/go/flake/formatter.nix

11 lines
303 B
Nix
Raw Permalink Normal View History

2025-03-26 15:08:13 +00:00
{ writeShellApplication, fd, nixfmt, deadnix, statix, go }:
writeShellApplication {
name = "linter";
runtimeInputs = [ fd nixfmt deadnix statix go ];
text = ''
fd -e nix -X nixfmt {} \; -X deadnix -e {} \;
fd -e nix -x statix fix {} \;
fd -e rs -X go fmt {} \; -X go vet {} \;
'';
}