chore: update svelte

This commit is contained in:
sam 2024-12-18 02:31:09 +01:00
parent 1fb1d8dd14
commit 05913a3b2f
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
3 changed files with 66 additions and 57 deletions

View file

@ -4,14 +4,31 @@
{
"name": "run-prettier",
"command": "pnpm",
"args": ["format"],
"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" ]
"args": [
"csharpier",
"${staged}"
],
"include": [
"**/*.cs"
]
}
]
}