fix: Add missing treefmt.nix #4

Closed
dfh wants to merge 1 commit from dfh/treefmt-fix into main AGit
Showing only changes of commit bb187bf9f4 - Show all commits

15
treefmt.nix Normal file
View file

@ -0,0 +1,15 @@
_: {
# Used to find the project root
projectRootFile = "flake.nix";
# Files not to format.
settings.global.excludes = [ "LICENSE" ];
# nix
programs.nixfmt.enable = true; # As of 2024-07-30 this is nixfmt-rfc-style.
programs.statix.enable = true;
programs.deadnix.enable = true;
# markdown
programs.prettier.enable = true;
}