treefmt add rustfmt
This commit is contained in:
parent
f7612711b0
commit
83b7458e9f
1 changed files with 9 additions and 0 deletions
|
@ -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" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue