-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
42 lines (42 loc) · 897 Bytes
/
.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
{
"extends": [
"plugin:vue/recommended",
"bamboo"
],
"rules": {
"no-throw-literal": 0,
"@typescript-eslint/restrict-plus-operands": 0,
"vue/script-indent": ["error", "tab"],
"strict": "off",
"vue/html-indent": ["warn", "tab"],
"vue/max-attributes-per-line": ["error", {
"singleline": 3,
"multiline": {
"max": 3,
"allowFirstLine": true
}
}],
"no-console": "off",
"vue/valid-v-model": "off",
"vue/no-parsing-error": "off",
"@typescript-eslint/camelcase": "off",
"comma-dangle": ["error", "always-multiline"]
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.eslint.json",
"ecmaFeatures": {
"jsx": true,
"modules": true
},
"sourceType": "module",
"extraFileExtensions": [".vue"]
},
"overrides": []
}