-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.eslintrc.js
113 lines (102 loc) · 2.83 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
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
107
108
109
110
111
112
113
const devWarnProdError = process.env.NODE_ENV === 'production' ? 'error' : 'warn';
module.exports = {
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module'
},
env: {
browser: true,
es6: true,
node: true
},
plugins: ['sonarjs'],
extends: ['eslint:recommended', 'plugin:sonarjs/recommended'],
rules: {
// 调试
'no-console': [
devWarnProdError,
{ 'allow': ['info', 'warn', 'error', 'time', 'timeEnd'] }
],
'no-debugger': devWarnProdError,
// 基本
'semi': ['error', 'always'],
'indent': ['error', 2, {
'SwitchCase': 1
}],
'brace-style': ['error', '1tbs', {
'allowSingleLine': true
}],
'quotes': ['error', 'single'],
// 变量
'new-cap': 'error',
'camelcase': 'error',
'no-use-before-define': ['error', {
'functions': false,
'classes': false,
'variables': true
}],
'no-unused-vars': devWarnProdError,
// 空白与换行
'semi-spacing': 'error',
'array-bracket-spacing': ['error', 'never'],
'block-spacing': ['error', 'always'],
'computed-property-spacing': 'error',
'comma-spacing': 'error',
'func-call-spacing': 'error',
'key-spacing': 'error',
'keyword-spacing': 'error',
'no-trailing-spaces': 'error',
'no-whitespace-before-property': 'error',
'space-before-blocks': 'error',
'space-before-function-paren': ['error', {
anonymous: 'never',
named: 'never',
asyncArrow: 'always'
}],
'space-in-parens': 'error',
'space-infix-ops': 'error',
'space-unary-ops': 'error',
'spaced-comment': ['error', 'always', {
'block': {
'markers': ['!'],
'balanced': true
}
}],
'object-curly-spacing': ['error', 'always'],
'object-property-newline': ['error', {
allowAllPropertiesOnSameLine: true
}],
'operator-linebreak': ['error', 'after'],
'eol-last': ['error', 'always'],
// 逗号
'comma-dangle': ['error', 'only-multiline'],
'comma-style': 'error',
// 其他
'no-extra-bind': 'error',
'no-extra-label': 'error',
'no-floating-decimal': 'error',
'no-implied-eval': 'error',
'no-iterator': 'error',
'no-loop-func': 'error',
'no-multi-spaces': 'error',
'no-proto': 'error',
'no-script-url': 'error',
'no-throw-literal': 'error',
'no-useless-call': 'error',
'no-with': 'error',
'no-constant-condition': devWarnProdError,
'no-empty': [devWarnProdError, {
'allowEmptyCatch': true
}],
'curly': ['error', 'multi-line'],
'wrap-iife': ['error', 'inside'],
// ES6
'no-var': 'error',
'prefer-const': 'error',
'no-duplicate-imports': 'error',
'prefer-promise-reject-errors': 'error',
'template-curly-spacing': ['error', 'never'],
'arrow-spacing': 'error',
'no-confusing-arrow': 'error'
}
};