add husky and csharpier

This commit is contained in:
sam 2024-10-09 17:11:05 +02:00
parent 3f93c26c0e
commit 6e51eb1e1e
3 changed files with 68 additions and 0 deletions

16
.husky/task-runner.json Normal file
View file

@ -0,0 +1,16 @@
{
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
"tasks": [
{
"name": "run-csharpier",
"command": "dotnet",
"args": [
"csharpier",
"${staged}"
],
"include": [
"**/*.cs"
]
}
]
}