-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
387 lines (277 loc) · 12.5 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/**
* @author PulseShift GmbH
*
* GENERAL EXPLANATION
* We only want errors or no errors. A warning can be interpreded differently.
* Therfore all lint rules must be either off or error. Warnings will waste time.
* The keyword IDEA will mark comments, explaining why the rule differs to other linting rule sets (e.g. from airbnb)
*/
module.exports = {
'env': {
'browser': true,
'node': true,
'es6': true
},
'extends': 'eslint:recommended',
'parser': 'babel-eslint',
'parserOptions': {
'ecmaVersion': 7,
'sourceType': 'module',
'ecmaFeatures': {
'experimentalObjectRestSpread': true
}
},
'plugins': [
'babel'
],
// define globals (sap is at the time only relevant for OpenUI5 apps)
'globals': {
'$': false,
'jQuery': false,
'sap': false
},
'rules': {
/* =========================================================== */
/* plugin rules */
/* =========================================================== */
/* =========================================================== */
/* basic eslint rules */
/* =========================================================== */
// TODO: check if this rule can be applied depending on the project (temporary activated, because UI5 is not transformed to es7, yet)
// require ASI instead use of semicolons (react projects only)
'semi': 'error',
// disallow unnecessary semicolons
'no-extra-semi': 'error',
// enforce spacing before and after semicolons
'semi-spacing': ['error', {
'before': false,
'after': true
}],
// disallow use of console
'no-console': 'error',
// disallow declaration of variables that are not used in the code
'no-unused-vars': ['error', {
'vars': 'local',
'args': 'after-used',
// allow some variables, that are declared/imported by default
'varsIgnorePattern': 'React'
}],
// disallow trailing commas
'comma-dangle': ['error', 'never'],
// disallow assignment in conditional expressions
'no-cond-assign': ['error', 'always'],
// disallow use of constant expressions in conditions
'no-constant-condition': 'error',
// disallow control characters in regular expressions
'no-control-regex': 'error',
// disallow use of debugger
'no-debugger': 'error',
// disallow duplicate arguments in functions
'no-dupe-args': 'error',
// disallow duplicate keys when creating object literals
'no-dupe-keys': 'error',
// disallow a duplicate case label
'no-duplicate-case': 'error',
// disallow the use of empty character classes in regular expressions
'no-empty-character-class': 'error',
// disallow empty statements
'no-empty': 'error',
// disallow assigning to the exception in a catch block
'no-ex-assign': 'error',
// disallow double-negation boolean casts in a boolean context
'no-extra-boolean-cast': 'error',
// disallow unnecessary parentheses
'no-extra-parens': ['error', 'functions'],
// disallow overwriting functions written as function declarations
'no-func-assign': 'error',
// disallow function or variable declarations in nested blocks
'no-inner-declarations': ['error', 'functions'],
// disallow invalid regular expression strings in the RegExp constructor
'no-invalid-regexp': 'error',
// disallow irregular whitespace outside of strings and comments
'no-irregular-whitespace': 'error',
// deprecated in favor of no-unsafe-negation
'no-negated-in-lhs': 'off',
// disallow negating the left operand of relational operators
'no-unsafe-negation': 'error',
// disallow the use of object properties of the global object (Math and JSON) as functions
'no-obj-calls': 'error',
// disallow multiple spaces in a regular expression literal
'no-regex-spaces': 'error',
// disallow sparse arrays
'no-sparse-arrays': 'error',
// disallow trailing whitespace at the end of lines
'no-trailing-spaces': 'error',
// disallow unreachable statements after a return, throw, continue, or break statement
'no-unreachable': 'error',
// disallow comparisons with the value NaN
'use-isnan': 'error',
// ensure JSDoc comments are valid
// IDEA: jsdoc is an important part of product documentation, only valid jsdoc (if used) will be accapted
'valid-jsdoc': ['error', {
'requireReturn': false
}],
// ensure that the results of typeof are compared against a valid string
'valid-typeof': ['error', { requireStringLiterals: true }],
// enforces getter/setter pairs in objects
'accessor-pairs': 'off',
// treat var statements as if they were block scoped
'block-scoped-var': 'error',
// turn off require return statements to either always or never specify values
// IDEA: no return statement will ever return undefined, a dummy return will not increase readability
'consistent-return': 'off',
// specify curly brace conventions for all control statements
'curly': ['error', 'multi-line'],
// require default case in switch statements
'default-case': ['error', { commentPattern: '^no default$' }],
// disallow the use of alert, confirm, and prompt
'no-alert': 'error',
// disallow use of arguments.caller or arguments.callee
'no-caller': 'error',
// disallow division operators explicitly at beginning of regular expression
'no-div-regex': 'error',
// disallow else after a return in an if
'no-else-return': 'error',
// disallow use of eval()
'no-eval': 'error',
// disallow adding to native types
'no-extend-native': 'error',
// disallow unnecessary function binding
'no-extra-bind': 'error',
// disallow fallthrough of case statements
'no-fallthrough': 'error',
// disallow the use of leading or trailing decimal points in numeric literals
'no-floating-decimal': 'error',
// disallow use of eval()-like methods
'no-implied-eval': 'error',
// disallow usage of __iterator__ property
'no-iterator': 'error',
// disallow use of labels for anything other then loops and switches
'no-labels': ['error', { allowLoop: false, allowSwitch: false }],
// disallow unnecessary nested blocks
'no-lone-blocks': 'error',
// disallow creation of functions within loops
'no-loop-func': 'error',
// disallow magic numbers
'no-magic-numbers': ['off', {
'ignore': [],
'ignoreArrayIndexes': true,
'enforceConst': true,
'detectObjects': false
}],
// disallow reassignments of native objects or read-only globals
'no-global-assign': ['error', { exceptions: [] }],
// deprecated in favor of no-global-assign
'no-native-reassign': 'off',
// disallow use of new operator for Function object
'no-new-func': 'error',
// disallows creating new instances of String, Number, and Boolean
'no-new-wrappers': 'error',
// disallow use of new operator when not part of the assignment or comparison
'no-new': 1,
// disallow use of octal escape sequences in string literals, such as
// var foo = 'Copyright \251';
'no-octal-escape': 'error',
// disallow use of (old style) octal literals
'no-octal': 'error',
// disallow usage of __proto__ property
'no-proto': 'error',
// disallow declaring the same variable more then once
'no-redeclare': 'error',
// disallow use of assignment in return statement
'no-return-assign': 'error',
// disallow use of `javascript:` urls.
'no-script-url': 'error',
// disallow comparisons where both sides are exactly the same
'no-self-compare': 'error',
// disallow use of comma operator
'no-sequences': 'error',
// disallow usage of expressions in statement position
'no-unused-expressions': ['error', {
'allowShortCircuit': false,
'allowTernary': false,
}],
// disallow use of void operator
'no-void': 'error',
// allow usage of configurable warning terms in comments: e.g. todo
'no-warning-comments': ['off', { terms: ['bug', 'todo', 'fix', 'hack', 'idea', 'note', 'review', 'fixme', 'xxx'], location: 'start' }],
// disallow use of the with statement
'no-with': 'error',
// require use of the second argument for parseInt()
'radix': 'error',
// require immediate function invocation to be wrapped in parentheses
'wrap-iife': ['error', 'outside'],
// disallow Yoda conditions
'yoda': 'error',
// babel inserts `'use strict';` for us
strict: ['error', 'never'],
// allow the catch clause parameter name being the same as a variable in the outer scope
// (if you do not need to support IE 8 and earlier, you should turn this rule off)
'no-catch-shadow': 'off',
// disallow deletion of variables
'no-delete-var': 'error',
// disallow labels that share a name with a variable
'no-label-var': 'error',
// disallow shadowing of names such as arguments
'no-shadow-restricted-names': 'error',
// disallow use of undefined when initializing variables
'no-undef-init': 'error',
// disallow use of undeclared variables unless mentioned in a /*global */ block
'no-undef': 'error',
// disallow use of variables before they are defined
'no-use-before-define': 'error',
// enforce one true brace style
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
// require camel case names
'camelcase': ['error', { properties: 'never' }],
// enforces consistent naming when capturing the current execution context
'consistent-this': 'off',
// disallow mixed 'LF' and 'CRLF' as linebreaks
'linebreak-style': ['error', 'unix'],
// specify the maximum depth callbacks can be nested
'max-nested-callbacks': 'off',
// require a capital letter for constructors
'new-cap': ['error', {
'newIsCap': true,
'newIsCapExceptions': [],
'capIsNew': false,
'capIsNewExceptions': ['Immutable.Map', 'Immutable.Set', 'Immutable.List'],
}],
// disallow the omission of parentheses when invoking a constructor with no arguments
'new-parens': 'error',
// disallow use of the Array constructor
'no-array-constructor': 'error',
// disallow if as the only statement in an else block
'no-lonely-if': 'error',
// disallow mixed spaces and tabs for indentation
'no-mixed-spaces-and-tabs': ['error', 'smart-tabs'],
// disallow nested ternary expressions
'no-nested-ternary': 'error',
// disallow use of the Object constructor
'no-new-object': 'error',
// disallow space between function identifier and application
'no-spaced-func': 'error',
// require quotes around object literal property names
'quote-props': ['error', 'as-needed', { keywords: false, unnecessary: true, numbers: false }],
// disallow double quotes
quotes: ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
// require a space before & after certain keywords
'keyword-spacing': ['error', {
'before': true,
'after': true,
'overrides': {
'return': { 'after': true },
'throw': { 'after': true },
'case': { 'after': true }
}
}],
// require spaces around operators
'space-infix-ops': 'error',
// Require or disallow spaces before/after unary operators
'space-unary-ops': ['error', {
'words': true,
'nonwords': false,
'overrides': {}
}]
}
};