-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
44 lines (44 loc) · 1.22 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
module.exports = {
parser: 'babel-eslint',
extends: ['eslint-config-alloy/react', 'plugin:prettier/recommended'],
plugins: ['prettier'],
globals: {
// 这里填入你的项目需要的全局变量
// 这里值为 false 表示这个全局变量不允许被重新赋值,比如:
//
// React: false,
// ReactDOM: false
},
rules: {
'prettier/prettier': [
'error',
{
singleQuote: true,
trailingComma: 'all',
printWidth: 120,
},
],
// 这里填入你的项目需要的个性化配置,比如:
// @fixable 一个缩进必须用两个空格替代
indent: ['error', 2, { SwitchCase: 1, flatTernaryExpressions: true }],
// @fixable jsx 的 children 缩进必须为两个空格
'react/jsx-indent': ['error', 2],
// @fixable jsx 的 props 缩进必须为两个空格
'react/jsx-indent-props': ['error', 2],
yoda: [2, 'always'],
'no-undefined': 0,
// 数组中的 jsx 必须有 key
'react/jsx-key': 0,
'object-curly-spacing': 0,
'generator-star-spacing': 0,
'no-debugger': 1,
'prefer-promise-reject-errors': 0,
'no-undef': [
0,
{
$: false,
window: false,
},
],
},
};