File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 188
188
"no-multi-spaces": 0,
189
189
"brace-style": 0, // enforce one true brace style (off by default)
190
190
"camelcase": 0, // require camel case names
191
- "consistent-this": [1, "self"] , // enforces consistent naming when capturing the current execution context (off by default)
191
+ "consistent-this": 1 , // enforces consistent naming when capturing the current execution context (off by default)
192
192
"eol-last": 1, // enforce newline at the end of file, with no multiple empty lines
193
193
"func-names": 0, // require function expressions to have a name (off by default)
194
194
"func-style": 0, // enforces use of function declarations or expressions (off by default)
195
195
"new-cap": 0, // require a capital letter for constructors
196
196
"new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
197
197
"no-nested-ternary": 0, // disallow nested ternary expressions (off by default)
198
198
"no-array-constructor": 1, // disallow use of the Array constructor
199
+ 'no-empty-character-class': 1, // disallow the use of empty character classes in regular expressions
199
200
"no-lonely-if": 0, // disallow if as the only statement in an else block (off by default)
200
201
"no-new-object": 1, // disallow use of the Object constructor
201
202
"no-spaced-func": 1, // disallow space between function identifier and application
You can’t perform that action at this time.
0 commit comments