-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc.js
69 lines (66 loc) · 2.41 KB
/
.eslintrc.js
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
69
module.exports = {
//一旦配置了root,ESlint停止在父级目录中查找配置文件
root: true,
//解析器
parser: "babel-eslint",
//想要支持的JS语言选项
parserOptions: {
//启用ES6语法支持(如果支持es6的全局变量{env: {es6: true}},则默认启用ES6语法支持)
//此处也可以使用年份命名的版本号:2015
ecmaVersion: 6,
//默认为script
sourceType: "module",
//支持其他的语言特性
ecmaFeatures: {
//...
}
},
//代码运行的环境,每个环境都会有一套预定义的全局对象,不同环境可以组合使用
env: {
browser: true,
es6: true,
node: true,
},
//访问当前源文件中未定义的变量时,no-undef会报警告。
//如果这些全局变量是合规的,可以在globals中配置,避免这些全局变量发出警告
globals: {
//配置给全局变量的布尔值,是用来控制该全局变量是否允许被重写
// test_param: true
process: true,
console: true,
chrome: true
},
//支持第三方插件的规则,插件以eslint-plugin-作为前缀,配置时该前缀可省略
//检查vue文件需要eslint-plugin-vue插件
// plugins: ["vue"],
//集成推荐的规则
// extends: ["eslint:recommended", "plugin:vue/essential"],
extends: ["eslint:recommended"],
//启用额外的规则或者覆盖默认的规则
//规则级别分别:为"off"(0)关闭、"warn"(1)警告、"error"(2)错误--error触发时,程序退出
rules: {
// //关闭“禁用console”规则
// "no-console": "off",
// //缩进不规范警告,要求缩进为2个空格,默认值为4个空格
// "indent": ["warn", 2, {
// //设置为1时强制switch语句中case的缩进为2个空格
// "SwitchCase": 1,
// //分别配置var、let和const的缩进
// "VariableDeclarator": { "var": 2, "let": 2, "const": 3 }
// }],
// //定义字符串不规范错误,要求字符串使用双引号
// quotes: ["error", "double"],
// //....
// //更多规则可查看http://eslint.cn/docs/rules/
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
"no-unused-vars": 0,
"no-undef": 2,
"no-console": 0,
"arrow-spacing": 2,
"indent": ["error", 2, { "SwitchCase": 1 }],
"eqeqeq": 2,
"space-in-parens": ["error", "never"],
"no-multiple-empty-lines": 2,
"eol-last": 2
}
}