-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
106 lines (105 loc) · 3.78 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"plugins": [
"react"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
// 有且仅有一个参数的箭头函数里可省略'()'
"arrow-parens": ["error", "as-needed"],
// 禁止使用行尾空白(空格、tab 和其它 Unicode 空白字符)
"no-trailing-spaces": ["off"],
// 禁止使用 console
"no-console": ["off"],
// 禁止在返回语句中赋值,比如 return foo = bar + 2; >>>>>> return foo == bar + 2;
"no-return-assign": ["off"],
// 禁止对函数参数再赋值
"no-param-reassign": ["off"],
// 要求或禁止使用拖尾逗号
// # always-multiline:
// - 当最后一个元素或属性与闭括号 ] 或 } 在 不同的行时,要求使用拖尾逗号;
// - 当在 同一行时,禁止使用拖尾逗号。
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
// 禁止标识符中有悬空下划线
// # allowAfterSuper
// - 允许在 super 对象的成员变量上使用悬空下划线
// # allowAfterThis
// - 允许在 this 对象的成员变量上使用悬空下划线
"no-underscore-dangle": ["error", {
"allowAfterSuper": true,
"allowAfterThis": true
}],
// 强制在花括号中使用一致的空格 比如:var obj = { foo: "bar" }; >>>>>> var obj = {foo: "bar"};
"object-curly-spacing": ["error", "never"],
// 每个缩进级别由 2 个空格组成,而不是使用 tab
// - switch 语句缩进 2 个空格。
"indent": ["error", 2, {
"SwitchCase": 1
}],
// 禁止使用分号代替 ASI
"semi": ["error", "never"],
// 限制最大长度(120),指定tab字符的宽度为2
// - 忽略所有拖尾注释和行内注释
"max-len": ["error", 120, 2, {
"ignoreComments": true
}],
// 禁止申明变量后却不使用
"no-unused-vars": ["error"],
// jsx语法缩进为2个空格
"react/jsx-indent": ["error", 2],
// 禁止使用数组索引作为key
"react/no-array-index-key": ["error"],
// 允许在.js和.jsx文件中使用jsx语法
"react/jsx-filename-extension": ["error", {
"extensions": [".js", ".jsx"]
}],
// 使用JSx时,必须引入React var React = require('react');
// @off
"react/react-in-jsx-scope": ["off"],
// 强制执行无状态的React Components作为纯函数
// - 忽略使用this.props或this.context从React.PureComponent扩展的组件
"react/prefer-stateless-function": [0, {
"ignorePureComponents": true
}],
"react/prop-types":["off"],
// 在类的非静态方法中,必须存在对 this 的引用
// @off 太严格了
"class-methods-use-this": ["off"],
// 禁止给div span这类本身不具有事件的dom元素绑定事件
// @off 拿span标签做按钮还是挺常见的
"jsx-a11y/no-static-element-interactions": ["off"],
// 禁止使用无关的包裹
// @off
"import/no-extraneous-dependencies": ["off"],
// 禁止强制执行组件方式的顺序
// @off
"react/sort-comp":["off"],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }]
},
"globals": {
"document": false,
"window": false,
"__DEV__": false,
"__PRO__": false,
"moment": true,
"lodash": true,
"_": true
}
}