This commit is contained in:
Schuhmacher 2025-03-31 11:43:32 +02:00
commit a168d30d84

View file

@ -37,6 +37,7 @@
runtimeInputs = with pkgs; [
nixfmt-rfc-style
nodePackages.prettier
rustfmt
];
settings = {
tree-root-file = ".git/index";
@ -45,6 +46,14 @@
command = "nixfmt";
includes = [ "*.nix" ];
};
rustfmt = {
command = "rustfmt";
options = [
"--edition"
"2018"
];
includes = [ "*.rs" ];
};
prettier = {
command = "prettier";
options = [ "--write" ];