34 lines
700 B
JSON
34 lines
700 B
JSON
{
|
|
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
|
|
"tasks": [
|
|
{
|
|
"name": "run-prettier",
|
|
"command": "pnpm",
|
|
"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"
|
|
]
|
|
}
|
|
]
|
|
}
|