@@ -202,9 +202,9 @@ module.exports = {
202202 'import/no-self-import' : 'error' ,
203203
204204 // 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' ] ,
208208 'quote-props' : [ 'error' , 'consistent-as-needed' ] ,
209209
210210 'unused-imports/no-unused-imports' : 'error' ,
@@ -214,7 +214,7 @@ module.exports = {
214214 'array-bracket-spacing' : [ 'error' , 'never' ] ,
215215 'brace-style' : [ 'error' , 'stroustrup' , { allowSingleLine : true } ] ,
216216 'block-spacing' : [ 'error' , 'always' ] ,
217- camelcase : 'off' ,
217+ ' camelcase' : 'off' ,
218218 'comma-spacing' : [ 'error' , { before : false , after : true } ] ,
219219 'comma-style' : [ 'error' , 'last' ] ,
220220 'comma-dangle' : [ 'error' , 'always-multiline' ] ,
@@ -224,7 +224,7 @@ module.exports = {
224224 'no-cond-assign' : [ 'error' , 'always' ] ,
225225 'func-call-spacing' : 'off' ,
226226 '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 } ] ,
228228 'no-restricted-syntax' : [ 'error' , 'DebuggerStatement' , 'LabeledStatement' , 'WithStatement' ] ,
229229 'object-curly-spacing' : [ 'error' , 'always' ] ,
230230 'no-return-await' : 'off' ,
@@ -297,8 +297,8 @@ module.exports = {
297297 'array-callback-return' : 'error' ,
298298 'block-scoped-var' : 'error' ,
299299 'consistent-return' : 'off' ,
300- complexity : 'off' ,
301- eqeqeq : [ 'error' , 'smart' ] ,
300+ ' complexity' : 'off' ,
301+ ' eqeqeq' : [ 'error' , 'smart' ] ,
302302 'no-alert' : 'warn' ,
303303 'no-case-declarations' : 'error' ,
304304 'no-multi-spaces' : 'error' ,
0 commit comments