1
+ {
2
+ "settings" : {
3
+ "react" : {
4
+ "pragma" : " React" ,
5
+ "version" : " detect"
6
+ }
7
+ },
8
+ "env" : {
9
+ "browser" : true ,
10
+ "commonjs" : true ,
11
+ "node" : true
12
+ },
13
+ "parser" : " @typescript-eslint/parser" ,
14
+ "plugins" : [
15
+ " @typescript-eslint"
16
+ ],
17
+ "extends" : [
18
+ " eslint:recommended" ,
19
+ " plugin:@typescript-eslint/eslint-recommended" ,
20
+ " plugin:@typescript-eslint/recommended" ,
21
+ " plugin:react-hooks/recommended" ,
22
+ " plugin:react/recommended" ,
23
+ " plugin:import/recommended"
24
+ ],
25
+ "rules" : {
26
+ "@typescript-eslint/ban-ts-comment" : " off" ,
27
+ "@typescript-eslint/no-var-requires" : " off" ,
28
+ "import/no-unresolved" : " off" ,
29
+ "import/no-webpack-loader-syntax" : " off" ,
30
+ "react/prop-types" : 0 ,
31
+ "semi" : [" error" , " never" ],
32
+ "quotes" : [" error" , " single" , { "avoidEscape" : true , "allowTemplateLiterals" : false }],
33
+ "accessor-pairs" : " error" ,
34
+ "array-bracket-spacing" : [" error" , " never" ],
35
+ "arrow-spacing" : [" error" , { "before" : true , "after" : true }],
36
+ "block-spacing" : [" error" , " always" ],
37
+ "brace-style" : [" error" , " 1tbs" , { "allowSingleLine" : true }],
38
+ "camelcase" : [" error" , { "properties" : " never" }],
39
+ "comma-dangle" : [" error" , {
40
+ "arrays" : " never" ,
41
+ "objects" : " never" ,
42
+ "imports" : " never" ,
43
+ "exports" : " never" ,
44
+ "functions" : " never"
45
+ }],
46
+ "comma-spacing" : [" error" , { "before" : false , "after" : true }],
47
+ "comma-style" : [" error" , " last" ],
48
+ "computed-property-spacing" : [" error" , " never" ],
49
+ "constructor-super" : " error" ,
50
+ "curly" : [" error" , " multi-line" ],
51
+ "dot-location" : [" error" , " property" ],
52
+ "dot-notation" : [" error" , { "allowKeywords" : true }],
53
+ "eol-last" : " error" ,
54
+ "eqeqeq" : [" error" , " always" , { "null" : " ignore" }],
55
+ "func-call-spacing" : [" error" , " never" ],
56
+ "generator-star-spacing" : [" error" , { "before" : true , "after" : true }],
57
+ "handle-callback-err" : [" error" , " ^(err|error)$" ],
58
+ "indent" : [" error" , 2 , {
59
+ "SwitchCase" : 1 ,
60
+ "VariableDeclarator" : 1 ,
61
+ "outerIIFEBody" : 1 ,
62
+ "MemberExpression" : 1 ,
63
+ "FunctionDeclaration" : { "parameters" : 1 , "body" : 1 },
64
+ "FunctionExpression" : { "parameters" : 1 , "body" : 1 },
65
+ "CallExpression" : { "arguments" : 1 },
66
+ "ArrayExpression" : 1 ,
67
+ "ObjectExpression" : 1 ,
68
+ "ImportDeclaration" : 1 ,
69
+ "flatTernaryExpressions" : false ,
70
+ "ignoreComments" : false ,
71
+ "ignoredNodes" : [" TemplateLiteral *" ]
72
+ }],
73
+ "key-spacing" : [" error" , { "beforeColon" : false , "afterColon" : true }],
74
+ "keyword-spacing" : [" error" , { "before" : true , "after" : true }],
75
+ "lines-between-class-members" : [" error" , " always" , { "exceptAfterSingleLine" : true }],
76
+ "new-cap" : [" error" , { "newIsCap" : true , "capIsNew" : false , "properties" : true }],
77
+ "new-parens" : " error" ,
78
+ "no-array-constructor" : " error" ,
79
+ "no-async-promise-executor" : " error" ,
80
+ "no-caller" : " error" ,
81
+ "no-case-declarations" : " error" ,
82
+ "no-class-assign" : " error" ,
83
+ "no-compare-neg-zero" : " error" ,
84
+ "no-cond-assign" : " error" ,
85
+ "no-const-assign" : " error" ,
86
+ "no-constant-condition" : [" error" , { "checkLoops" : false }],
87
+ "no-control-regex" : " error" ,
88
+ "no-debugger" : " error" ,
89
+ "no-delete-var" : " error" ,
90
+ "no-dupe-args" : " error" ,
91
+ "no-dupe-class-members" : " error" ,
92
+ "no-dupe-keys" : " error" ,
93
+ "no-duplicate-case" : " error" ,
94
+ "no-empty-character-class" : " error" ,
95
+ "no-empty-pattern" : " error" ,
96
+ "no-eval" : " error" ,
97
+ "no-ex-assign" : " error" ,
98
+ "no-extend-native" : " error" ,
99
+ "no-extra-bind" : " error" ,
100
+ "no-extra-boolean-cast" : " error" ,
101
+ "no-extra-parens" : [" error" , " functions" ],
102
+ "no-fallthrough" : " error" ,
103
+ "no-floating-decimal" : " error" ,
104
+ "no-func-assign" : " error" ,
105
+ "no-global-assign" : " error" ,
106
+ "no-implied-eval" : " error" ,
107
+ "no-inner-declarations" : [" error" , " functions" ],
108
+ "no-invalid-regexp" : " error" ,
109
+ "no-irregular-whitespace" : " error" ,
110
+ "no-iterator" : " error" ,
111
+ "no-labels" : [" error" , { "allowLoop" : false , "allowSwitch" : false }],
112
+ "no-lone-blocks" : " error" ,
113
+ "no-misleading-character-class" : " error" ,
114
+ "no-prototype-builtins" : " error" ,
115
+ "no-useless-catch" : " error" ,
116
+ "no-mixed-operators" : [" error" , {
117
+ "groups" : [
118
+ [" ==" , " !=" , " ===" , " !==" , " >" , " >=" , " <" , " <=" ],
119
+ [" &&" , " ||" ],
120
+ [" in" , " instanceof" ]
121
+ ],
122
+ "allowSamePrecedence" : true
123
+ }],
124
+ "no-mixed-spaces-and-tabs" : " error" ,
125
+ "no-multi-spaces" : " error" ,
126
+ "no-multi-str" : " error" ,
127
+ "no-multiple-empty-lines" : [" error" , { "max" : 1 , "maxEOF" : 0 }],
128
+ "no-negated-in-lhs" : " error" ,
129
+ "no-new" : " error" ,
130
+ "no-new-func" : " error" ,
131
+ "no-new-object" : " error" ,
132
+ "no-new-require" : " error" ,
133
+ "no-new-symbol" : " error" ,
134
+ "no-new-wrappers" : " error" ,
135
+ "no-obj-calls" : " error" ,
136
+ "no-octal" : " error" ,
137
+ "no-octal-escape" : " error" ,
138
+ "no-path-concat" : " error" ,
139
+ "no-proto" : " error" ,
140
+ "no-redeclare" : [" error" , { "builtinGlobals" : false }],
141
+ "no-regex-spaces" : " error" ,
142
+ "no-return-assign" : [" error" , " except-parens" ],
143
+ "no-self-assign" : [" error" , { "props" : true }],
144
+ "no-self-compare" : " error" ,
145
+ "no-sequences" : " error" ,
146
+ "no-shadow-restricted-names" : " error" ,
147
+ "no-sparse-arrays" : " error" ,
148
+ "no-tabs" : " error" ,
149
+ "no-template-curly-in-string" : " error" ,
150
+ "no-this-before-super" : " error" ,
151
+ "no-throw-literal" : " error" ,
152
+ "no-trailing-spaces" : " error" ,
153
+ "no-undef" : " error" ,
154
+ "no-undef-init" : " error" ,
155
+ "no-unexpected-multiline" : " error" ,
156
+ "no-unmodified-loop-condition" : " error" ,
157
+ "no-unneeded-ternary" : [" error" , { "defaultAssignment" : false }],
158
+ "no-unreachable" : " error" ,
159
+ "no-unsafe-finally" : " error" ,
160
+ "no-unsafe-negation" : " error" ,
161
+ "no-unused-expressions" : [" error" , { "allowShortCircuit" : true , "allowTernary" : true , "allowTaggedTemplates" : true }],
162
+ "no-unused-vars" : [" error" , { "vars" : " all" , "args" : " none" , "ignoreRestSiblings" : true }],
163
+ "no-use-before-define" : [" error" , { "functions" : false , "classes" : false , "variables" : false }],
164
+ "no-useless-call" : " error" ,
165
+ "no-useless-computed-key" : " error" ,
166
+ "no-useless-constructor" : " error" ,
167
+ "no-useless-escape" : " error" ,
168
+ "no-useless-rename" : " error" ,
169
+ "no-useless-return" : " error" ,
170
+ "no-void" : " error" ,
171
+ "no-whitespace-before-property" : " error" ,
172
+ "no-with" : " error" ,
173
+ "object-curly-newline" : [" error" , { "multiline" : true , "consistent" : true }],
174
+ "object-curly-spacing" : [" error" , " always" ],
175
+ "object-property-newline" : [" error" , { "allowMultiplePropertiesPerLine" : true }],
176
+ "one-var" : [" error" , { "initialized" : " never" }],
177
+ "operator-linebreak" : [" error" , " after" , { "overrides" : { "?" : " before" , ":" : " before" , "|>" : " before" } }],
178
+ "padded-blocks" : [" error" , { "blocks" : " never" , "switches" : " never" , "classes" : " never" }],
179
+ "prefer-const" : [" error" , {"destructuring" : " all" }],
180
+ "prefer-promise-reject-errors" : " error" ,
181
+ "quote-props" : [" error" , " as-needed" ],
182
+ "rest-spread-spacing" : [" error" , " never" ],
183
+ "semi-spacing" : [" error" , { "before" : false , "after" : true }],
184
+ "space-before-blocks" : [" error" , " always" ],
185
+ "space-before-function-paren" : [" error" , " always" ],
186
+ "space-in-parens" : [" error" , " never" ],
187
+ "space-infix-ops" : " error" ,
188
+ "space-unary-ops" : [" error" , { "words" : true , "nonwords" : false }],
189
+ "spaced-comment" : [" error" , " always" , {
190
+ "line" : { "markers" : [" *package" , " !" , " /" , " ," , " =" ] },
191
+ "block" : { "balanced" : true , "markers" : [" *package" , " !" , " ," , " :" , " ::" , " flow-include" ], "exceptions" : [" *" ] }
192
+ }],
193
+ "symbol-description" : " error" ,
194
+ "template-curly-spacing" : [" error" , " never" ],
195
+ "template-tag-spacing" : [" error" , " never" ],
196
+ "unicode-bom" : [" error" , " never" ],
197
+ "use-isnan" : " error" ,
198
+ "valid-typeof" : [" error" , { "requireStringLiterals" : true }],
199
+ "wrap-iife" : [" error" , " any" , { "functionPrototypeMethods" : true }],
200
+ "yield-star-spacing" : [" error" , " both" ],
201
+ "yoda" : [" error" , " never" ],
202
+
203
+ "import/export" : " error" ,
204
+ "import/first" : " error" ,
205
+ "import/no-absolute-path" : [" error" , { "esmodule" : true , "commonjs" : true , "amd" : false }],
206
+ "import/no-duplicates" : " error" ,
207
+ "import/no-named-default" : " error"
208
+ },
209
+ "ignorePatterns" : [
210
+ " **/*.babel.js" ,
211
+ " **/*.bundle.js" ,
212
+ " **/*.spec.js" ,
213
+ " **/*.min.js" ,
214
+ " public/editor/modules/insights/axe.d.ts" ,
215
+ " **/commands.js" ,
216
+ " elements/*/public/*" ,
217
+ " devAddons/*" ,
218
+ " _infrastructure/*" ,
219
+ " devElements/*" ,
220
+ " public/config/*" ,
221
+ " public/dist/*" ,
222
+ " tests/*" ,
223
+ " tools/*" ,
224
+ " public/config/" ,
225
+ " public/sources/assetsLibrary/*"
226
+ ],
227
+ "root" : true
228
+ }
0 commit comments