@@ -202,9 +202,9 @@ module.exports = {
202
202
'import/no-self-import' : 'error' ,
203
203
204
204
// Common
205
- semi : [ 'error' , 'never' ] ,
206
- curly : [ 'error' , 'multi-or-nest' , 'consistent' ] ,
207
- quotes : [ 'error' , 'single' ] ,
205
+ ' semi' : [ 'error' , 'never' ] ,
206
+ ' curly' : [ 'error' , 'multi-or-nest' , 'consistent' ] ,
207
+ ' quotes' : [ 'error' , 'single' ] ,
208
208
'quote-props' : [ 'error' , 'consistent-as-needed' ] ,
209
209
210
210
'unused-imports/no-unused-imports' : 'error' ,
@@ -214,7 +214,7 @@ module.exports = {
214
214
'array-bracket-spacing' : [ 'error' , 'never' ] ,
215
215
'brace-style' : [ 'error' , 'stroustrup' , { allowSingleLine : true } ] ,
216
216
'block-spacing' : [ 'error' , 'always' ] ,
217
- camelcase : 'off' ,
217
+ ' camelcase' : 'off' ,
218
218
'comma-spacing' : [ 'error' , { before : false , after : true } ] ,
219
219
'comma-style' : [ 'error' , 'last' ] ,
220
220
'comma-dangle' : [ 'error' , 'always-multiline' ] ,
@@ -224,7 +224,7 @@ module.exports = {
224
224
'no-cond-assign' : [ 'error' , 'always' ] ,
225
225
'func-call-spacing' : 'off' ,
226
226
'key-spacing' : [ 'error' , { beforeColon : false , afterColon : true } ] ,
227
- indent : [ 'error' , 2 , { SwitchCase : 1 , VariableDeclarator : 1 , outerIIFEBody : 1 } ] ,
227
+ ' indent' : [ 'error' , 2 , { SwitchCase : 1 , VariableDeclarator : 1 , outerIIFEBody : 1 } ] ,
228
228
'no-restricted-syntax' : [ 'error' , 'DebuggerStatement' , 'LabeledStatement' , 'WithStatement' ] ,
229
229
'object-curly-spacing' : [ 'error' , 'always' ] ,
230
230
'no-return-await' : 'off' ,
@@ -297,8 +297,8 @@ module.exports = {
297
297
'array-callback-return' : 'error' ,
298
298
'block-scoped-var' : 'error' ,
299
299
'consistent-return' : 'off' ,
300
- complexity : 'off' ,
301
- eqeqeq : [ 'error' , 'smart' ] ,
300
+ ' complexity' : 'off' ,
301
+ ' eqeqeq' : [ 'error' , 'smart' ] ,
302
302
'no-alert' : 'warn' ,
303
303
'no-case-declarations' : 'error' ,
304
304
'no-multi-spaces' : 'error' ,
0 commit comments