We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a6050 commit b64ebf8Copy full SHA for b64ebf8
rules/base.js
@@ -46,7 +46,7 @@ module.exports = {
46
'accessor-pairs': 2, // enforce getter and setter pairs in objects
47
'array-callback-return': 0, // enforce `return` statements in callbacks of array methods
48
'block-scoped-var': 0, // enforce the use of variables within the scope they are defined
49
- 'class-methods-use-this': 1, // enforce that class methods utilize `this`
+ 'class-methods-use-this': 0, // enforce that class methods utilize `this`
50
'complexity': [1, {max: 8}], // enforce a maximum cyclomatic complexity allowed in a program
51
'consistent-return': 0, // require return statements to either always or never specify values
52
'curly': [1, 'multi-line', 'consistent'], // enforce consistent brace style for all control statements
0 commit comments