readability of code.
- camelCase rule: downgraded to warning level due to possible breaking
changes caused by changing the regex patterns (alpha_numeric,
month_day_year, day_month_year) may have unforseen consequences
- newCap rule: disabled to prevent breaking changes
- no-extra-parens: disabled to prevent creating scenarios that
unreadable (i.e. math)
},
"rules": {
"block-scoped-var": 2,
- "camelcase": 2,
+ "camelcase": 1,
"comma-style": [2, "last"],
"curly": [0, "all"],
"dot-notation": [
],
"eqeqeq": [2, "allow-null"],
"guard-for-in": 2,
- "new-cap": 2,
+ "new-cap": 0,
"no-bitwise": 2,
"no-caller": 2,
"no-cond-assign": [2, "except-parens"],
"no-empty": 2,
"no-eval": 2,
"no-extend-native": 2,
- "no-extra-parens": 1,
+ "no-extra-parens": 0,
"no-irregular-whitespace": 2,
"no-iterator": 2,
"no-loop-func": 2,