25 lines
627 B
JSON
25 lines
627 B
JSON
{
|
|
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
|
|
"tasks": [
|
|
{
|
|
"name": "run-prettier",
|
|
"command": "npx",
|
|
"args": ["prettier", "-w", "${staged}"],
|
|
"include": [
|
|
"Foxnouns.Frontend/**/*.ts",
|
|
"Foxnouns.Frontend/**/*.json",
|
|
"Foxnouns.Frontend/**/*.scss",
|
|
"Foxnouns.Frontend/**/*.js",
|
|
"Foxnouns.Frontend/**/*.svelte"
|
|
],
|
|
"cwd": "Foxnouns.Frontend/",
|
|
"pathMode": "absolute"
|
|
},
|
|
{
|
|
"name": "run-csharpier",
|
|
"command": "dotnet",
|
|
"args": ["csharpier", "${staged}"],
|
|
"include": ["**/*.cs"]
|
|
}
|
|
]
|
|
}
|