1
+ {
2
+ "env": {
3
+ "browser": true,
4
+ "node": true,
5
+ "es6": true,
6
+ },
7
+
8
+ "ecmaFeatures": {
9
+ "modules": 1
10
+ },
11
+
12
+ "rules": {
13
+ "accessor-pairs": 2,
14
+ "array-bracket-spacing": 0,
15
+ "block-scoped-var": 0,
16
+ "brace-style": [2, "1tbs", { "allowSingleLine": true }],
17
+ "camelcase": 0,
18
+ "comma-dangle": [2, "never"],
19
+ "comma-spacing": [2, { "before": false, "after": true }],
20
+ "comma-style": [2, "last"],
21
+ "complexity": 0,
22
+ "computed-property-spacing": 0,
23
+ "consistent-return": 0,
24
+ "consistent-this": 0,
25
+ "constructor-super": 2,
26
+ "curly": [2, "multi-line"],
27
+ "default-case": 0,
28
+ "dot-location": [2, "property"],
29
+ "dot-notation": 0,
30
+ "eol-last": 2,
31
+ "eqeqeq": [2, "allow-null"],
32
+ "func-names": 0,
33
+ "func-style": 0,
34
+ "generator-star": 0,
35
+ "generator-star-spacing": [2, { "before": true, "after": true }],
36
+ "global-strict": 0,
37
+ "guard-for-in": 0,
38
+ "handle-callback-err": [2, "^(err|error)$" ],
39
+ "indent": [2, 2],
40
+ "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
41
+ "linebreak-style": 0,
42
+ "lines-around-comment": 0,
43
+ "max-depth": 0,
44
+ "max-len": 0,
45
+ "max-nested-callbacks": 0,
46
+ "max-params": 0,
47
+ "max-statements": 0,
48
+ "new-cap": [2, { "newIsCap": true, "capIsNew": false }],
49
+ "new-parens": 2,
50
+ "newline-after-var": 0,
51
+ "no-alert": 0,
52
+ "no-array-constructor": 2,
53
+ "no-bitwise": 0,
54
+ "no-caller": 2,
55
+ "no-catch-shadow": 0,
56
+ "no-comma-dangle": 0,
57
+ "no-cond-assign": 2,
58
+ "no-console": 0,
59
+ "no-constant-condition": 0,
60
+ "no-continue": 0,
61
+ "no-control-regex": 2,
62
+ "no-debugger": 2,
63
+ "no-delete-var": 2,
64
+ "no-div-regex": 0,
65
+ "no-dupe-args": 2,
66
+ "no-dupe-keys": 2,
67
+ "no-duplicate-case": 2,
68
+ "no-else-return": 0,
69
+ "no-empty": 0,
70
+ "no-empty-character-class": 2,
71
+ "no-empty-class": 0,
72
+ "no-empty-label": 2,
73
+ "no-eq-null": 0,
74
+ "no-eval": 2,
75
+ "no-ex-assign": 2,
76
+ "no-extend-native": 2,
77
+ "no-extra-bind": 2,
78
+ "no-extra-boolean-cast": 2,
79
+ "no-extra-parens": 0,
80
+ "no-extra-semi": 0,
81
+ "no-extra-strict": 0,
82
+ "no-fallthrough": 2,
83
+ "no-floating-decimal": 2,
84
+ "no-func-assign": 2,
85
+ "no-implied-eval": 2,
86
+ "no-inline-comments": 0,
87
+ "no-inner-declarations": [2, "functions"],
88
+ "no-invalid-regexp": 2,
89
+ "no-irregular-whitespace": 2,
90
+ "no-iterator": 2,
91
+ "no-label-var": 2,
92
+ "no-labels": 2,
93
+ "no-lone-blocks": 2,
94
+ "no-lonely-if": 0,
95
+ "no-loop-func": 0,
96
+ "no-mixed-requires": 0,
97
+ "no-mixed-spaces-and-tabs": 2,
98
+ "no-multi-spaces": 2,
99
+ "no-multi-str": 2,
100
+ "no-multiple-empty-lines": [2, { "max": 1 }],
101
+ "no-native-reassign": 2,
102
+ "no-negated-in-lhs": 2,
103
+ "no-nested-ternary": 0,
104
+ "no-new": 2,
105
+ "no-new-func": 0,
106
+ "no-new-object": 2,
107
+ "no-new-require": 2,
108
+ "no-new-wrappers": 2,
109
+ "no-obj-calls": 2,
110
+ "no-octal": 2,
111
+ "no-octal-escape": 2,
112
+ "no-param-reassign": 0,
113
+ "no-path-concat": 0,
114
+ "no-plusplus": 0,
115
+ "no-process-env": 0,
116
+ "no-process-exit": 0,
117
+ "no-proto": 0,
118
+ "no-redeclare": 2,
119
+ "no-regex-spaces": 2,
120
+ "no-reserved-keys": 0,
121
+ "no-restricted-modules": 0,
122
+ "no-return-assign": 2,
123
+ "no-script-url": 0,
124
+ "no-self-compare": 2,
125
+ "no-sequences": 2,
126
+ "no-shadow": 0,
127
+ "no-shadow-restricted-names": 2,
128
+ "no-space-before-semi": 0,
129
+ "no-spaced-func": 2,
130
+ "no-sparse-arrays": 2,
131
+ "no-sync": 0,
132
+ "no-ternary": 0,
133
+ "no-this-before-super": 2,
134
+ "no-throw-literal": 2,
135
+ "no-trailing-spaces": 2,
136
+ "no-undef": 2,
137
+ "no-undef-init": 2,
138
+ "no-undefined": 0,
139
+ "no-underscore-dangle": 0,
140
+ "no-unexpected-multiline": 2,
141
+ "no-unneeded-ternary": 2,
142
+ "no-unreachable": 2,
143
+ "no-unused-expressions": 0,
144
+ "no-unused-vars": [2, { "vars": "all", "args": "none" }],
145
+ "no-use-before-define": 0,
146
+ "no-var": 0,
147
+ "no-void": 0,
148
+ "no-warning-comments": 0,
149
+ "no-with": 2,
150
+ "object-curly-spacing": 0,
151
+ "object-shorthand": 0,
152
+ "one-var": [2, { "initialized": "never" }],
153
+ "operator-assignment": 0,
154
+ "operator-linebreak": [2, "after"],
155
+ "padded-blocks": 0,
156
+ "prefer-const": 0,
157
+ "quote-props": 0,
158
+ "quotes": [2, "single", "avoid-escape"],
159
+ "radix": 2,
160
+ "semi": [2, "never"],
161
+ "semi-spacing": 0,
162
+ "sort-vars": 0,
163
+ "space-after-function-name": 0,
164
+ "space-after-keywords": [2, "always"],
165
+ "space-before-blocks": [2, "always"],
166
+ "space-before-function-paren": [2, "always"],
167
+ "space-before-function-parentheses": 0,
168
+ "space-in-brackets": 0,
169
+ "space-in-parens": [2, "never"],
170
+ "space-infix-ops": 2,
171
+ "space-return-throw-case": 2,
172
+ "space-unary-ops": [2, { "words": true, "nonwords": false }],
173
+ "spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!"] }],
174
+ "spaced-line-comment": 0,
175
+ "strict": 0,
176
+ "use-isnan": 2,
177
+ "valid-jsdoc": 0,
178
+ "valid-typeof": 2,
179
+ "vars-on-top": 0,
180
+ "wrap-iife": [2, "any"],
181
+ "wrap-regex": 0,
182
+ "yoda": [2, "never"]
183
+ }
184
+ }
0 commit comments