client-dotnet/.husky/task-runner.json
Peter Kurfer b642b7bc9b
Some checks failed
continuous-integration/drone/push Build is failing
refactor: use Husky.NET instead of pre-commit
2023-09-18 10:59:46 +02:00

34 lines
591 B
JSON

{
"tasks": [
{
"name": "dotnet-format",
"group": "pre-commit",
"command": "dotnet",
"args": [
"dotnet-format",
"--include",
"${staged}"
],
"include": [
"**/*.cs",
"**/*.vb"
]
},
{
"name": "Run JB Clean Up Code",
"group": "pre-commit",
"command": "dotnet",
"pathMode": "relative",
"args": [
"jb",
"cleanupcode",
"INetMock.sln",
"--telemetry-optout"
],
"include": [
"**/*.cs",
"**/*.vb"
]
}
]
}