fix: Actions
This commit is contained in:
parent
2dbadc7eab
commit
c549f51c49
5 changed files with 5 additions and 3 deletions
|
@ -12,6 +12,7 @@
|
|||
"format": "prettier --write src/",
|
||||
"format-check": "prettier --check src/",
|
||||
"lint": "eslint . --fix",
|
||||
"pretest:unit": "npm run build",
|
||||
"test:unit": "vitest --run"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -17,7 +17,7 @@ export default [
|
|||
includeIgnoreFile(gitignorePath),
|
||||
{
|
||||
ignores: ['**/dist/**', '**/.node_modules/**', '**/coverage/**', '**/.github/**'],
|
||||
files: ['**/*.ts', '**/*.cts', '**.*.mts', '**/*.ts'],
|
||||
files: ['**/*.ts', '**/*.cts', '**.*.mts'],
|
||||
},
|
||||
{
|
||||
languageOptions: {
|
||||
|
|
|
@ -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"],
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
"format": "npm run format --workspace=backend --workspace=common --workspace=frontend",
|
||||
"format-check": "npm run format-check --workspace=backend --workspace=common --workspace=frontend",
|
||||
"lint": "npm run lint --workspace=backend --workspace=common --workspace=frontend",
|
||||
"pretest:unit": "npm run build",
|
||||
"test:unit": "npm run test:unit --workspace=backend --workspace=frontend"
|
||||
},
|
||||
"workspaces": [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue