-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.eslintrc.json
More file actions
27 lines (27 loc) · 764 Bytes
/
.eslintrc.json
File metadata and controls
27 lines (27 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"root": true,
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"ecmaVersion": 2020,
"parser": "@typescript-eslint/parser"
},
"plugins": ["@typescript-eslint"],
"ignorePatterns": ["webpack*.js", "tailwind.config.js", "vendor/**/*.js"],
"rules": {
"no-console": "off",
"no-debugger": "off",
"no-undef": "off",
"@typescript-eslint/no-explicit-any": "off",
"vue/multi-word-component-names": "off"
},
"globals": {
"defineProps": true,
"defineEmits": true
}
}