Dotnet/template-files/husky-tasks.json
{
"tasks": [ { "name": "dotnet-format", "group": "pre-commit", "command": "dotnet", "args": [ "format", "-v", "normal", "--include", "${staged}" ] }, { "name": "dotnet-test", "group": "pre-commit", "command": "dotnet", "args": [ "test" ] }, { "name": "dotnet-test", "group": "pre-push", "command": "dotnet", "args": [ "test" ] } ] } |