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
| "use strict";
|
| module.exports = {
| "env": {
| "es6": false
| },
| "ecmaFeatures": {
| "arrowFunctions": true,
| "blockBindings": true,
| "classes": true,
| "defaultParams": true,
| "destructuring": true,
| "forOf": true,
| "generators": false,
| "modules": true,
| "objectLiteralComputedProperties": true,
| "objectLiteralDuplicateProperties": false,
| "objectLiteralShorthandMethods": true,
| "objectLiteralShorthandProperties": true,
| "restParams": true,
| "spread": true,
| "superInFunctions": true,
| "templateStrings": true,
| "jsx": true
| },
| "rules": {
| // require braces in arrow function body
| "arrow-body-style": [2, "as-needed"],
| // require parens in arrow function arguments
| "arrow-parens": 0,
| // require space before/after arrow function's arrow
| "arrow-spacing": [2, { "before": true, "after": true }],
| // verify super() callings in constructors
| "constructor-super": 0,
| // enforce the spacing around the * in generator functions
| "generator-star-spacing": 0,
| // disallow arrow functions where a condition is expected
| "no-arrow-condition": 0,
| // disallow modifying variables of class declarations
| "no-class-assign": 0,
| // disallow modifying variables that are declared using const
| "no-const-assign": 2,
| // disallow duplicate name in class members
| "no-dupe-class-members": 0,
| // disallow to use this/super before super() calling in constructors.
| "no-this-before-super": 0,
| // require let or const instead of var
| "no-var": 2,
| // require method and property shorthand syntax for object literals
| "object-shorthand": [2, "always"],
| // suggest using arrow functions as callbacks
| "prefer-arrow-callback": 2,
| // suggest using of const declaration for variables that are never modified after declared
| "prefer-const": 2,
| // suggest using Reflect methods where applicable
| "prefer-reflect": 0,
| // suggest using the spread operator instead of .apply()
| "prefer-spread": 0,
| // suggest using template literals instead of strings concatenation
| "prefer-template": 2,
| // disallow generator functions that do not have yield
| "require-yield": 0
| }
| };
|
|