mirror of https://github.com/zulip/zulip.git
lint: Remove duplicate ESLint rules.
This commit is contained in:
parent
520d1de052
commit
863b5a233c
|
@ -194,7 +194,6 @@
|
|||
"no-param-reassign": 0,
|
||||
"arrow-spacing": ["error", { "before": true, "after": true }],
|
||||
"no-alert": 2,
|
||||
"no-array-constructor": 2,
|
||||
"no-caller": 2,
|
||||
"no-bitwise": 2,
|
||||
"no-catch-shadow": 2,
|
||||
|
@ -223,7 +222,6 @@
|
|||
"no-with": 2,
|
||||
"no-fallthrough": 2,
|
||||
"no-unreachable": 2,
|
||||
"no-undef": 2,
|
||||
"no-undef-init": 2,
|
||||
"no-unused-expressions": 2,
|
||||
"no-octal": 2,
|
||||
|
@ -232,12 +230,10 @@
|
|||
"no-multi-str": 2,
|
||||
"no-new-wrappers": 2,
|
||||
"no-new": 2,
|
||||
"no-new-func": 2,
|
||||
"no-native-reassign": 2,
|
||||
"no-plusplus": 2,
|
||||
"no-delete-var": 2,
|
||||
"no-return-assign": 2,
|
||||
"no-new-object": 2,
|
||||
"no-label-var": 2,
|
||||
"no-ternary": 0,
|
||||
"no-self-compare": 2,
|
||||
|
@ -250,7 +246,6 @@
|
|||
}],
|
||||
"no-script-url": 2,
|
||||
"no-proto": 2,
|
||||
"no-iterator": 2,
|
||||
"no-mixed-requires": [0, false],
|
||||
"no-extra-parens": ["error", "functions"],
|
||||
"no-shadow": 0,
|
||||
|
@ -262,7 +257,6 @@
|
|||
"camelcase": 0,
|
||||
"complexity": [0, 4],
|
||||
"curly": 2,
|
||||
"dot-notation": 2,
|
||||
"guard-for-in": 2,
|
||||
"max-depth": [0, 4],
|
||||
"max-len": ["error", 100, 2, {
|
||||
|
@ -278,7 +272,6 @@
|
|||
"new-parens": 2,
|
||||
"one-var": ["error", "never"],
|
||||
"quotes": [0, "single"],
|
||||
"quote-props": ["error", "as-needed", { "keywords": false, "unnecessary": true, "numbers": false }],
|
||||
"radix": 2,
|
||||
"semi": 2,
|
||||
"keyword-spacing": ["error", {
|
||||
|
@ -295,7 +288,6 @@
|
|||
"unnecessary-strict": 0,
|
||||
"use-isnan": 2,
|
||||
"valid-typeof": ["error", { "requireStringLiterals": true }],
|
||||
"wrap-iife": 2,
|
||||
"wrap-regex": 0,
|
||||
"yoda": 2
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue