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

35 lines
700 B
JSON
Raw Normal View History

{
"$schema": "https://alirezanet.github.io/Husky.Net/schema.json",
"tasks": [
{
"name": "run-prettier",
"command": "pnpm",
2024-12-18 02:31:09 +01:00
"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",
2024-12-18 02:31:09 +01:00
"args": [
"csharpier",
"${staged}"
],
"include": [
"**/*.cs"
]
}
]
}