fix: added whitespace formatter for csharp

This commit is contained in:
D. Moonfire 2024-08-07 12:33:16 -05:00
parent 673504e221
commit f378dedc71

View file

@ -33,22 +33,25 @@ let
}; };
} }
// pkgs.lib.attrsets.optionalAttrs dotnet.format { // pkgs.lib.attrsets.optionalAttrs dotnet.format {
dotnet-format-style = {
command = "dotnet";
options = [ "format" "style" "--include" ];
includes = [ "*.cs" ];
};
dotnet-format-analyzers = { dotnet-format-analyzers = {
command = "dotnet"; command = "dotnet";
options = [ "format" "analyzers" "--include" ]; options = [ "format" "analyzers" "--include" ];
includes = [ "*.cs" ]; includes = [ "*.cs" ];
priority = 2;
};
dotnet-format-style = {
command = "dotnet";
options = [ "format" "style" "--include" ];
includes = [ "*.cs" ];
priority = 1;
}; };
dotnet-format-whitespace = { dotnet-format-whitespace = {
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 {