-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.js
166 lines (161 loc) · 4.33 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/* eslint-disable no-magic-numbers */
module.exports = {
extends: [ "plugin:@wordpress/eslint-plugin/esnext" ],
parserOptions: {
'ecmaVersion': 8,
'sourceType': 'module'
},
env: {
'es6': true,
'node': true
},
globals: {
'window': false
},
rules: {
'accessor-pairs': 'error',
'block-scoped-var': 'error',
'callback-return': 'error',
'complexity': [ 'error', 8 ],
'consistent-return': 'error',
'consistent-this': [ 'error', 'self' ],
'constructor-super': 'error',
'default-case': 'error',
'eqeqeq': 'error',
'func-style': 'off',
'global-require': 'error',
'guard-for-in': 'off',
'handle-callback-err': [ 'error', '^err(or)?$' ],
'id-length': 'off',
'id-match': 'off',
'indent': [ 'error', 'tab' ],
'init-declarations': 'off',
'max-depth': [ 'error', 3 ],
'max-nested-callbacks': [ 'error', 3 ],
'max-params': [ 'error', 4 ],
'max-statements': 'off',
'new-parens': 'off',
'no-alert': 'error',
'no-array-constructor': 'off',
'no-bitwise': 'off',
'no-caller': 'error',
'no-case-declarations': 'error',
'no-catch-shadow': 'error',
'no-class-assign': 'error',
'no-console': 'error',
'no-const-assign': 'error',
'no-constant-condition': 'off',
'no-continue': 'off',
'no-control-regex': 'error',
'no-debugger': 'error',
'no-delete-var': 'error',
'no-div-regex': 'off',
'no-dupe-args': 'error',
'no-dupe-class-members': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-else-return': 'off',
'no-empty-character-class': 'error',
'no-empty-pattern': 'error',
'no-empty': 'error',
'no-eq-null': 'error',
'no-eval': 'error',
'no-ex-assign': 'error',
'no-extend-native': 'off',
'no-extra-bind': 'error',
'no-extra-boolean-cast': 'error',
'no-extra-parens': 'error',
'no-extra-semi': 'error',
'no-fallthrough': 'error',
'no-floating-decimal': 'error',
'no-func-assign': 'error',
'no-global-assign': 'error',
'no-implicit-coercion': 'error',
'no-implicit-globals': 'off',
'no-implied-eval': 'error',
'no-inline-comments': 'off',
'no-inner-declarations': 'error',
'no-invalid-regexp': 'error',
'no-invalid-this': 'off',
'no-iterator': 'error',
'no-label-var': 'error',
'no-labels': 'off',
'no-lone-blocks': 'error',
'no-lonely-if': 'error',
'no-loop-func': 'error',
'no-magic-numbers': [ 'error', {
'ignoreArrayIndexes': true,
'ignore': [ -1, 0 ]
} ],
'no-mixed-requires': 'off',
'no-native-reassign': 'error',
'no-negated-condition': 'off',
'no-negated-in-lhs': 'error',
'no-nested-ternary': 'off',
'no-new-func': 'off',
'no-new-object': 'error',
'no-new-require': 'off',
'no-new-wrappers': 'error',
'no-new': 'error',
'no-obj-calls': 'error',
'no-octal-escape': 'error',
'no-octal': 'error',
'no-param-reassign': 'error',
'no-path-concat': 'error',
'no-plusplus': 'off',
'no-process-env': 'error',
'no-process-exit': 'off',
'no-proto': 'error',
'no-redeclare': 'error',
'no-regex-spaces': 'off',
'no-restricted-imports': 'off',
'no-restricted-syntax': 'off',
'no-return-assign': 'error',
'no-script-url': 'off',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-shadow-restricted-names': 'error',
'no-shadow': 'error',
'no-sparse-arrays': 'error',
'no-sync': 'off',
'no-ternary': 'off',
'no-this-before-super': 'error',
'no-throw-literal': 'error',
'no-undef-init': 'off',
'no-undef': 'error',
'no-undefined': 'off',
'no-unneeded-ternary': 'error',
'no-unreachable': 'error',
'no-unused-expressions': 'error',
'no-unused-vars': 'error',
'no-use-before-define': 'off',
'no-useless-call': 'error',
'no-useless-concat': 'error',
'no-var': 'off',
'no-void': 'off',
'object-shorthand': 'off',
'one-var': [ 'error', {
var: 'always',
let: 'always',
const: 'never'
} ],
'operator-assignment': [ 'error', 'always' ],
'prefer-arrow-callback': 'off',
'prefer-const': 'off',
'prefer-reflect': 'off',
'prefer-rest-params': 'off',
'prefer-spread': 'off',
'prefer-template': 'off',
'quotes': ['error', 'single', { 'allowTemplateLiterals': true } ],
'radix': [ 'error', 'always' ],
'require-yield': 'off',
'sort-imports': 'off',
'sort-vars': 'off',
'space-in-parens': [ 'error', 'always' ],
'strict': [ 'error', 'function' ],
'use-isnan': 'error',
'valid-typeof': 'error',
'valid-jsdoc': 'error',
'wrap-regex': 'off'
}
};