Compare commits
No commits in common. "f378dedc71e3b2b82f95041069bec56fce9e9524" and "ba0be419a7049e46ed0566e822aac29407824601" have entirely different histories.
f378dedc71
...
ba0be419a7
1 changed files with 7 additions and 10 deletions
|
@ -33,25 +33,22 @@ let
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
|
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
|
||||||
dotnet-format-analyzers = {
|
|
||||||
command = "dotnet";
|
|
||||||
options = [ "format" "analyzers" "--include" ];
|
|
||||||
includes = [ "*.cs" ];
|
|
||||||
priority = 2;
|
|
||||||
};
|
|
||||||
|
|
||||||
dotnet-format-style = {
|
dotnet-format-style = {
|
||||||
command = "dotnet";
|
command = "dotnet";
|
||||||
options = [ "format" "style" "--include" ];
|
options = [ "format" "style" "--include" ];
|
||||||
includes = [ "*.cs" ];
|
includes = [ "*.cs" ];
|
||||||
priority = 1;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dotnet-format-whitespace = {
|
dotnet-format-analyzers = {
|
||||||
|
command = "dotnet";
|
||||||
|
options = [ "format" "analyzers" "--include" ];
|
||||||
|
includes = [ "*.cs" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
dotnet-format-analyzers = {
|
||||||
command = "dotnet";
|
command = "dotnet";
|
||||||
options = [ "format" "whitespace" "--include" ];
|
options = [ "format" "whitespace" "--include" ];
|
||||||
includes = [ "*.cs" ];
|
includes = [ "*.cs" ];
|
||||||
priority = 0;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// pkgs.lib.attrsets.optionalAttrs rust.enable {
|
// pkgs.lib.attrsets.optionalAttrs rust.enable {
|
||||||
|
|
Loading…
Reference in a new issue