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

22 lines
359 B
JSON
Raw Normal View History

{
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
"tasks": [
{
"name": "run-prettier",
"command": "yarn",
"args": [
"format",
"${staged}"
],
"pathMode": "absolute"
},
{
"name": "dotnet-format",
"command": "dotnet",
"args": [
"format"
]
}
]
}