Files
nix-lib/treefmt.nix
Nikolaos Karaolidis afc80d8f42 Add libs
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2025-08-17 12:24:38 +03:00

27 lines
390 B
Nix

{ ... }:
{
projectRootFile = "flake.nix";
programs = {
nixfmt = {
enable = true;
strict = true;
};
shellcheck.enable = true;
prettier.enable = true;
gofmt.enable = true;
};
settings.global.excludes = [
# Git
"*/.gitignore"
".gitattributes"
".envrc"
# Manifest Files
"*/package.json"
"*/go.mod"
"*/bun.lockb"
];
}