Newer
Older
module.exports = {
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
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
},
"rules": {
"no-class-assign": 0,
"import/no-extraneous-dependencies": [
2,
{
"devDependencies": true
}
],
"eol-last": [
"error",
"always"
],
"indent": [
"error",
2
],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxBOF": 0,
"maxEOF": 1
}
],
"keyword-spacing": [
"error",
{
"before": true,
"after": true
}
],
"no-var": "error",
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"eqeqeq": [
"error",
"always"
],
"space-infix-ops": "error",
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"curly": "error",
"handle-callback-err": "error",
"operator-linebreak": [
"error",
"after"
],
"block-spacing": "error",
"camelcase": "error",
"comma-dangle": [
"error",
"never"
],
"comma-style": [
"error",
"last"
],
"dot-location": [
"error",
"property"
],
"func-call-spacing": [
"error",
"never"
],
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true,
"mode": "strict"
}
],
"new-cap": "error",
"new-parens": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-parens": [
"error",
"all",
{
"conditionalAssign": false,
"returnAssign": false,
"nestedBinaryExpressions": false,
"enforceForArrowConditionals": false
}
],
"no-fallthrough": "error",
"no-floating-decimal": "error",
"no-implied-eval": "error",
"no-label-var": "error",
"no-lone-blocks": "error",
"no-mixed-spaces-and-tabs": "error",
"no-return-assign": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-shadow-restricted-names": "error",
"no-tabs": "error",
"no-template-curly-in-string": "error",
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-unmodified-loop-condition": "error",
"no-unneeded-ternary": "error",
"no-useless-constructor": "error",
"no-whitespace-before-property": "error",
"no-with": "error",
"object-property-newline": "error",
"object-shorthand": "error",
"padded-blocks": [
"error",
"never"
],
"rest-spread-spacing": [
"error"
],
"semi-spacing": "error",
"space-before-blocks": "error",
"space-in-parens": [
"error",
"never"
],
"space-unary-ops": "error",
"template-curly-spacing": "error",
"yoda": "error",
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"semi": "error"
}
};