fix: added whitespace formatter for csharp

This commit is contained in:
D. Moonfire 2024-08-07 12:28:00 -05:00
parent 69a08cc797
commit ba0be419a7

View file

@ -44,6 +44,12 @@ let
options = [ "format" "analyzers" "--include" ];
includes = [ "*.cs" ];
};
dotnet-format-analyzers = {
command = "dotnet";
options = [ "format" "whitespace" "--include" ];
includes = [ "*.cs" ];
};
}
// pkgs.lib.attrsets.optionalAttrs rust.enable {
rust = {