-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
64 lines (64 loc) · 1.2 KB
/
.eslintrc
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"root": true,
"extends": [
"plugin:vue/recommended",
"airbnb-base",
"plugin:prettier/recommended",
"prettier/vue"
],
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
}
},
"env": {
"browser": true,
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".json", ".jsx"]
}
}
},
"rules": {
// "comma-dangle": "off",
// "import/no-extraneous-dependencies": [
// "error",
// {
// "devDependencies": true
// }
// ],
// "vue/script-indent": [
// "error",
// 2,
// {
// "baseIndent": 1,
// "switchCase": 1
// }
// ]
// prettier 无法支持max-attribute-per-line,互相冲突,所以关掉
// "vue/max-attributes-per-line": [
// 2,
// {
// "singleline":1,
// "multiline": {
// "max": 1,
// "allowFirstLine": false
// }
// }
// ]
}
// "overrides": [
// {
// "files": ["*.vue"],
// "rules": {
// "indent": "off"
// }
// }
// ]
}