Merge branch 'main' of https://git.mixel.cloud/Turbo/peer-group-grading
This commit is contained in:
commit
a168d30d84
1 changed files with 9 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
||||||
runtimeInputs = with pkgs; [
|
runtimeInputs = with pkgs; [
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
nodePackages.prettier
|
nodePackages.prettier
|
||||||
|
rustfmt
|
||||||
];
|
];
|
||||||
settings = {
|
settings = {
|
||||||
tree-root-file = ".git/index";
|
tree-root-file = ".git/index";
|
||||||
|
@ -45,6 +46,14 @@
|
||||||
command = "nixfmt";
|
command = "nixfmt";
|
||||||
includes = [ "*.nix" ];
|
includes = [ "*.nix" ];
|
||||||
};
|
};
|
||||||
|
rustfmt = {
|
||||||
|
command = "rustfmt";
|
||||||
|
options = [
|
||||||
|
"--edition"
|
||||||
|
"2018"
|
||||||
|
];
|
||||||
|
includes = [ "*.rs" ];
|
||||||
|
};
|
||||||
prettier = {
|
prettier = {
|
||||||
command = "prettier";
|
command = "prettier";
|
||||||
options = [ "--write" ];
|
options = [ "--write" ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue