Foxnouns.NET/.husky/task-runner.json

18 lines
356 B
JSON
Raw Normal View History

{
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
"tasks": [
{
"name": "run-prettier",
"command": "yarn",
2024-10-02 00:16:20 +02:00
"args": ["format"],
"pathMode": "absolute"
},
{
"name": "run-csharpier",
"command": "dotnet",
"args": [ "csharpier", "${staged}" ],
"include": [ "**/*.cs" ]
}
]
}