configure nix fmt to use prettier

This commit is contained in:
jopejoe1 2025-03-28 12:05:18 +01:00
parent 84ff4719be
commit cf8b748c0b

View file

@ -28,5 +28,42 @@
};
}
);
formatter = forSystems (
system:
let
pkgs = pkgs' system;
in
pkgs.treefmt.withConfig {
runtimeInputs = with pkgs; [
nixfmt-rfc-style
nodePackages.prettier
];
settings = {
tree-root-file = ".git/index";
formatter = {
nixfmt = {
command = "nixfmt";
includes = [ "*.nix" ];
};
prettier = {
command = "prettier";
options = [ "--write" ];
includes = [
"*.css"
"*.html"
"*.js"
"*.json"
"*.jsx"
"*.md"
"*.mdx"
"*.scss"
"*.ts"
"*.yaml"
];
};
};
};
}
);
};
}