Compare commits

...

2 commits

View file

@ -33,22 +33,25 @@ let
};
}
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
dotnet-format-style = {
command = "dotnet";
options = [ "format" "style" "--include" ];
includes = [ "*.cs" ];
};
dotnet-format-analyzers = {
command = "dotnet";
options = [ "format" "analyzers" "--include" ];
includes = [ "*.cs" ];
priority = 2;
};
dotnet-format-analyzers = {
dotnet-format-style = {
command = "dotnet";
options = [ "format" "style" "--include" ];
includes = [ "*.cs" ];
priority = 1;
};
dotnet-format-whitespace = {
command = "dotnet";
options = [ "format" "whitespace" "--include" ];
includes = [ "*.cs" ];
priority = 0;
};
}
// pkgs.lib.attrsets.optionalAttrs rust.enable {