.eslintrc.json
1.0 KB
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
65
66
67
68
{
"extends": "standard",
//插件
// "plugins": [
// "prettier"
// ],
//配置解析器
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
//插件
"plugins": ["prettier", "html"],
"settings": {
"html/html-extensions": [".wxml"]
},
"env": {
//脚本目标的运行环境
"node": true
},
//全局变量
"globals": {
"__DEV__": true,
"__WECHAT__": true,
"__ALIPAY__": true,
"App": true,
"Page": true,
"Component": true,
"Behavior": true,
"wx": true,
"getApp": true
},
//规则,只用插件:插件名/规则
"rules": {
"indent": ["error", "tab", { "SwitchCase": 1 }],
"no-console": 0,
"no-tabs": 0,
"quotes": [
2,
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"semi": [
2,
"never",
{
"beforeStatementContinuationChars": "never"
}
],
"no-delete-var": 2,
"space-before-function-paren": 0,
"prefer-const": [
2,
{
"ignoreReadBeforeAssign": false
}
]
}
}