-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.01 KB
/
.eslintrc.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"root": true,
"ignorePatterns": [
"./src/assets/*",
"./dist/*",
"./.vscode/*",
"./.husky/*",
"./.github/*",
"./node_modules/*"
],
"env": {
"browser": true,
"es6": true
},
"extends": [
"prettier",
"eslint:recommended",
"plugin:vue/vue3-recommended",
"@vue/typescript/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"sourceType": "module",
"ecmaVersion": "latest"
},
"plugins": ["vue", "@typescript-eslint", "prettier"],
"rules": {
"no-fallthrough": "off",
"prefer-const": "error",
"no-mixed-spaces-and-tabs": "off",
"prettier/prettier": "error",
"vue/max-attributes-per-line": "off",
"vue/html-indent": "off",
"vue/html-self-closing": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/multi-word-component-names": "off",
"vue/html-closing-bracket-newline": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}