1+ {
2+ "env" : {
3+ "node" : true ,
4+ "es6" : true
5+ },
6+ "parserOptions" : {
7+ "ecmaVersion" : 6 ,
8+ "sourceType" : " module" ,
9+ "ecmaFeatures" : {
10+ }
11+ },
12+ "extends" : " eslint:recommended" ,
13+ "rules" : {
14+ "accessor-pairs" : " error" ,
15+ "array-bracket-spacing" : " error" ,
16+ "array-callback-return" : " error" ,
17+ "arrow-body-style" : " error" ,
18+ "arrow-parens" : " error" ,
19+ "arrow-spacing" : " error" ,
20+ "block-scoped-var" : " error" ,
21+ "block-spacing" : " off" ,
22+ "callback-return" : " error" ,
23+ "camelcase" : " error" ,
24+ "comma-spacing" : [
25+ " error" ,
26+ {
27+ "after" : true ,
28+ "before" : false
29+ }
30+ ],
31+ "comma-style" : [
32+ " error" ,
33+ " last"
34+ ],
35+ "complexity" : " error" ,
36+ "computed-property-spacing" : " error" ,
37+ "consistent-return" : " error" ,
38+ "consistent-this" : " error" ,
39+ "curly" : " error" ,
40+ "default-case" : " error" ,
41+ "dot-location" : " error" ,
42+ "dot-notation" : " error" ,
43+ "eol-last" : " error" ,
44+ "eqeqeq" : " error" ,
45+ "func-names" : " off" ,
46+ "func-style" : [
47+ " error" ,
48+ " declaration"
49+ ],
50+ "generator-star-spacing" : " error" ,
51+ "global-require" : " error" ,
52+ "guard-for-in" : " error" ,
53+ "handle-callback-err" : " error" ,
54+ "id-blacklist" : " error" ,
55+ "id-length" : " error" ,
56+ "id-match" : " error" ,
57+ "indent" : " off" ,
58+ "init-declarations" : " error" ,
59+ "jsx-quotes" : " error" ,
60+ "key-spacing" : " error" ,
61+ "keyword-spacing" : " off" ,
62+ "linebreak-style" : [
63+ " error" ,
64+ " unix"
65+ ],
66+ "lines-around-comment" : " error" ,
67+ "max-depth" : " error" ,
68+ "max-len" : " error" ,
69+ "max-nested-callbacks" : " error" ,
70+ "max-params" : " error" ,
71+ "max-statements" : " off" ,
72+ "max-statements-per-line" : " error" ,
73+ "new-cap" : " error" ,
74+ "new-parens" : " error" ,
75+ "newline-after-var" : " off" ,
76+ "newline-before-return" : " off" ,
77+ "newline-per-chained-call" : " error" ,
78+ "no-alert" : " error" ,
79+ "no-array-constructor" : " error" ,
80+ "no-bitwise" : " error" ,
81+ "no-caller" : " error" ,
82+ "no-catch-shadow" : " error" ,
83+ "no-confusing-arrow" : " error" ,
84+ "no-continue" : " error" ,
85+ "no-console" : " off" ,
86+ "no-div-regex" : " error" ,
87+ "no-duplicate-imports" : " error" ,
88+ "no-else-return" : " error" ,
89+ "no-empty-function" : " error" ,
90+ "no-eq-null" : " error" ,
91+ "no-eval" : " error" ,
92+ "no-extend-native" : " error" ,
93+ "no-extra-bind" : " error" ,
94+ "no-extra-label" : " error" ,
95+ "no-extra-parens" : " error" ,
96+ "no-floating-decimal" : " error" ,
97+ "no-implicit-coercion" : " error" ,
98+ "no-implicit-globals" : " error" ,
99+ "no-implied-eval" : " error" ,
100+ "no-inline-comments" : " error" ,
101+ "no-invalid-this" : " error" ,
102+ "no-iterator" : " error" ,
103+ "no-label-var" : " error" ,
104+ "no-labels" : " error" ,
105+ "no-lone-blocks" : " error" ,
106+ "no-lonely-if" : " error" ,
107+ "no-loop-func" : " error" ,
108+ "no-magic-numbers" : " error" ,
109+ "no-mixed-requires" : " error" ,
110+ "no-multi-spaces" : " error" ,
111+ "no-multi-str" : " error" ,
112+ "no-multiple-empty-lines" : " error" ,
113+ "no-native-reassign" : " error" ,
114+ "no-negated-condition" : " error" ,
115+ "no-nested-ternary" : " error" ,
116+ "no-new" : " error" ,
117+ "no-new-func" : " error" ,
118+ "no-new-object" : " error" ,
119+ "no-new-require" : " error" ,
120+ "no-new-wrappers" : " error" ,
121+ "no-octal-escape" : " error" ,
122+ "no-param-reassign" : [
123+ " off" ,
124+ {
125+ "props" : false
126+ }
127+ ],
128+ "no-path-concat" : " error" ,
129+ "no-plusplus" : " error" ,
130+ "no-process-env" : " error" ,
131+ "no-process-exit" : " error" ,
132+ "no-proto" : " error" ,
133+ "no-restricted-globals" : " error" ,
134+ "no-restricted-imports" : " error" ,
135+ "no-restricted-modules" : " error" ,
136+ "no-restricted-syntax" : " error" ,
137+ "no-return-assign" : " error" ,
138+ "no-script-url" : " error" ,
139+ "no-self-compare" : " error" ,
140+ "no-sequences" : " error" ,
141+ "no-shadow" : " error" ,
142+ "no-shadow-restricted-names" : " error" ,
143+ "no-spaced-func" : " error" ,
144+ "no-sync" : " error" ,
145+ "no-ternary" : " error" ,
146+ "no-throw-literal" : " error" ,
147+ "no-trailing-spaces" : " error" ,
148+ "no-undef-init" : " error" ,
149+ "no-undefined" : " error" ,
150+ "no-underscore-dangle" : " error" ,
151+ "no-unmodified-loop-condition" : " error" ,
152+ "no-unneeded-ternary" : " error" ,
153+ "no-unused-expressions" : " error" ,
154+ "no-use-before-define" : " error" ,
155+ "no-useless-call" : " error" ,
156+ "no-useless-concat" : " error" ,
157+ "no-useless-constructor" : " error" ,
158+ "no-useless-escape" : " error" ,
159+ "no-var" : " off" ,
160+ "no-void" : " error" ,
161+ "no-warning-comments" : " error" ,
162+ "no-whitespace-before-property" : " error" ,
163+ "no-with" : " error" ,
164+ "object-curly-spacing" : " error" ,
165+ "object-shorthand" : " error" ,
166+ "one-var" : " off" ,
167+ "one-var-declaration-per-line" : " error" ,
168+ "operator-assignment" : " error" ,
169+ "operator-linebreak" : " error" ,
170+ "padded-blocks" : " off" ,
171+ "prefer-arrow-callback" : " off" ,
172+ "prefer-const" : " error" ,
173+ "prefer-reflect" : " error" ,
174+ "prefer-rest-params" : " error" ,
175+ "prefer-spread" : " error" ,
176+ "prefer-template" : " error" ,
177+ "quote-props" : " off" ,
178+ "quotes" : " off" ,
179+ "radix" : " error" ,
180+ "require-jsdoc" : " off" ,
181+ "require-yield" : " error" ,
182+ "semi" : " off" ,
183+ "semi-spacing" : " error" ,
184+ "sort-imports" : " error" ,
185+ "sort-vars" : " error" ,
186+ "space-before-blocks" : " off" ,
187+ "space-before-function-paren" : " off" ,
188+ "space-in-parens" : [
189+ " error" ,
190+ " never"
191+ ],
192+ "space-infix-ops" : " error" ,
193+ "space-unary-ops" : " error" ,
194+ "spaced-comment" : " error" ,
195+ "strict" : [
196+ " error" ,
197+ " never"
198+ ],
199+ "template-curly-spacing" : " error" ,
200+ "valid-jsdoc" : " error" ,
201+ "vars-on-top" : " off" ,
202+ "wrap-iife" : " error" ,
203+ "wrap-regex" : " error" ,
204+ "yield-star-spacing" : " error" ,
205+ "yoda" : " error"
206+ }
207+ }
0 commit comments