fix: Actions

This commit is contained in:
Tibo De Peuter 2025-04-02 19:38:36 +02:00
parent 2dbadc7eab
commit c549f51c49
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
5 changed files with 5 additions and 3 deletions

View file

@ -21,7 +21,7 @@ const vueConfig = defineConfigWithVueTs(
{
name: "app/files-to-ignore",
ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**"],
ignores: ["**/dist/**", "**/dist-ssr/**", "**/coverage/**", "prettier.config.js"],
},
pluginVue.configs["flat/essential"],

View file

@ -11,7 +11,7 @@
"type-check": "vue-tsc --build",
"format": "prettier --write src/",
"format-check": "prettier --check src/",
"lint": "eslint ./{src,tests} --fix",
"lint": "eslint . --fix",
"test:unit": "vitest --run",
"test:e2e": "playwright test"
},