fix: treefmt needs a sequence for dotnet format

This commit is contained in:
D. Moonfire 2024-04-18 21:52:18 -05:00
parent a176d8d954
commit 7b98100c20

View file

@ -35,13 +35,13 @@ let
// pkgs.lib.attrsets.optionalAttrs dotnet.format {
dotnet-format-style = {
command = "dotnet";
options = "format style --include";
options = [ "format", "style", "--include" ];
includes = [ "*.cs" ];
};
dotnet-format-analyzers = {
command = "dotnet";
options = "format analyzers --include";
options = [ "format", "analyzers", "--include" ];
includes = [ "*.cs" ];
};
}