fix: added whitespace formatter for csharp
This commit is contained in:
parent
69a08cc797
commit
ba0be419a7
1 changed files with 6 additions and 0 deletions
|
@ -44,6 +44,12 @@ let
|
||||||
options = [ "format" "analyzers" "--include" ];
|
options = [ "format" "analyzers" "--include" ];
|
||||||
includes = [ "*.cs" ];
|
includes = [ "*.cs" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dotnet-format-analyzers = {
|
||||||
|
command = "dotnet";
|
||||||
|
options = [ "format" "whitespace" "--include" ];
|
||||||
|
includes = [ "*.cs" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
// pkgs.lib.attrsets.optionalAttrs rust.enable {
|
// pkgs.lib.attrsets.optionalAttrs rust.enable {
|
||||||
rust = {
|
rust = {
|
||||||
|
|
Loading…
Reference in a new issue