-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
68 lines (67 loc) · 2.45 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
// eslint的语法规则
module.exports = {
// 开启推荐配置信息
// "extends": "eslint:recommended",
// 默认情况下,ESLint 会在所有父级目录里寻找配置文件,一直到根目录。如果你想要你所有项目都遵循一个特定的约定时,这将会很有用,但有时候会导致意想不到的结果。为了将 ESLint 限制到一个特定的项目,在你项目根目录下的 package.json 文件或者 .eslintrc.* 文件里的 eslintConfig 字段下设置 "root": true。ESLint 一旦发现配置文件中有 "root": true,它就会停止在父级目录中寻找。
"root": true,
// 脚本在执行期间访问的额外的全局变量
// 当访问未定义的变量时,no-undef 规则将发出警告。如果你想在一个文件里使用全局变量,推荐你定义这些全局变量,这样 ESLint 就不会发出警告了。你可以使用注释或在配置文件中定义全局变量。
"globals" : {
"window":true,
"document":true,
"$":true
},
"installedESLint": true,
// 设置插件
// "plugins": [
// 'html'
// ],
// 设置解析器选项(必须设置这个属性)
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true,
"arrowFunctions": true,
"classes": true,
"modules": true,
"defaultParams": true
}
},
"parser": "babel-eslint",
// 启用的规则及各自的错误级别
"rules" : {
// 禁止用console
"no-console":0,
// 禁止用分号
"semi":[0,'never'],
// 在同一个作用域中禁止多次重复定义
"no-redeclare":1,
"no-empty": 0,
"comma-dangle": 0,
"no-unused-vars": 0,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-duplicate-case": 2,
"no-extra-parens": [2, "functions"],
"no-self-compare": 2,
"accessor-pairs": 2,
"constructor-super": 2,
"new-cap": [2, {
"newIsCap": true,
"capIsNew": false
}],
"new-parens": 2,
"no-array-constructor": 2,
"no-class-assign": 2,
"no-cond-assign": 2
},
// 指定你想启用的环境
"env": {
"browser": true,
"es6": true,
"node": true,
"commonjs": true
}
};