fix: corrected the dotnet format path
This commit is contained in:
parent
5f2895af1f
commit
a176d8d954
1 changed files with 4 additions and 2 deletions
|
@ -34,12 +34,14 @@ let
|
|||
}
|
||||
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
|
||||
dotnet-format-style = {
|
||||
command = "dotnet format style --include";
|
||||
command = "dotnet";
|
||||
options = "format style --include";
|
||||
includes = [ "*.cs" ];
|
||||
};
|
||||
|
||||
dotnet-format-analyzers = {
|
||||
command = "dotnet format analyzers --include";
|
||||
command = "dotnet";
|
||||
options = "format analyzers --include";
|
||||
includes = [ "*.cs" ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue