treefmt.nix 482 B

12345678910111213141516
  1. {
  2. projectRootFile = "Cargo.toml";
  3. programs = {
  4. alejandra.enable = true; # nix
  5. statix.enable = true; # nix static analysis
  6. deadnix.enable = true; # find dead nix code
  7. rustfmt.enable = true; # rust
  8. shellcheck.enable = true; # bash/shell
  9. taplo.enable = true; # toml
  10. yamlfmt.enable = true; # yaml
  11. };
  12. settings = {
  13. formatter.shellcheck.includes = ["*.sh" "./completions/bash/eza"];
  14. formatter.rustfmt.excludes = ["src/options/flags.rs"];
  15. };
  16. }