feat: use recommended linting settings for vue
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Dominik Pschenitschni 2021-11-01 15:06:23 +01:00
parent 8058790f9a
commit 5f20c7fc91
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
"build:dev": "vite build -m development --outDir dist-dev/",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint --ignore-pattern '*.test.*' ./src --ext .vue,.js,.ts",
"lint:fix": "eslint --ignore-pattern '*.test.*' ./src --ext .vue,.js,.ts --fix",
"cypress:open": "cypress open",
"test:unit": "vitest run",
"test:unit-watch": "vitest watch",
@ -103,7 +104,7 @@
},
"extends": [
"eslint:recommended",
"plugin:vue/vue3-essential",
"plugin:vue/vue3-recommended",
"@vue/typescript"
],
"rules": {