mirror of https://github.com/zulip/zulip.git
Tighten eslint rules with zero errors to airbnb values.
block-scoped-vars, guard-for-in, radix and valid-typeof are eslint rules that were set to warning in the eslintrc. Since there are no errors, they have been toggled to the appropriate values from the airbnb style guide.
This commit is contained in:
parent
287eb2cd49
commit
e2270f5499
|
@ -146,13 +146,13 @@
|
|||
"no-redeclare": 2,
|
||||
"no-regex-spaces": 2,
|
||||
"brace-style": [1, "1tbs"],
|
||||
"block-scoped-var": 0,
|
||||
"block-scoped-var": 2,
|
||||
"camelcase": 1,
|
||||
"complexity": [0, 4],
|
||||
"curly": 2,
|
||||
"dot-notation": 2,
|
||||
"eqeqeq": 2,
|
||||
"guard-for-in": 0,
|
||||
"guard-for-in": 2,
|
||||
"max-depth": [0, 4],
|
||||
"max-len": [0, 80, 4],
|
||||
"max-params": [0, 3],
|
||||
|
@ -162,14 +162,14 @@
|
|||
"one-var": 1,
|
||||
"quotes": [1, "single"],
|
||||
"quote-props": 0,
|
||||
"radix": 0,
|
||||
"radix": 2,
|
||||
"semi": 2,
|
||||
"keyword-spacing": 1,
|
||||
"space-before-blocks": 1,
|
||||
"strict": 1,
|
||||
"unnecessary-strict": 0,
|
||||
"use-isnan": 2,
|
||||
"valid-typeof": 0,
|
||||
"valid-typeof": ['error', { requireStringLiterals: true }],
|
||||
"wrap-iife": 2,
|
||||
"wrap-regex": 0,
|
||||
"yoda": 1
|
||||
|
|
Loading…
Reference in New Issue