eslint: Convert 0 to off in config.

This commit is contained in:
Thomas Ip 2019-06-22 14:04:09 +08:00 committed by Tim Abbott
parent 71caf114fb
commit b44d97688d
1 changed files with 44 additions and 44 deletions

View File

@ -225,7 +225,7 @@
"arrow-spacing": [ "error", { "before": true, "after": true } ], "arrow-spacing": [ "error", { "before": true, "after": true } ],
"block-scoped-var": "error", "block-scoped-var": "error",
"brace-style": [ "error", "1tbs", { "allowSingleLine": true } ], "brace-style": [ "error", "1tbs", { "allowSingleLine": true } ],
"camelcase": 0, "camelcase": "off",
"comma-dangle": [ "error", "comma-dangle": [ "error",
{ {
"arrays": "always-multiline", "arrays": "always-multiline",
@ -241,7 +241,7 @@
"after": true "after": true
} }
], ],
"complexity": [ 0, 4 ], "complexity": [ "off", 4 ],
"curly": "error", "curly": "error",
"dot-notation": [ "error", { "allowKeywords": true } ], "dot-notation": [ "error", { "allowKeywords": true } ],
"empty-returns/main": "error", "empty-returns/main": "error",
@ -275,7 +275,7 @@
} }
} }
], ],
"max-depth": [ 0, 4 ], "max-depth": [ "off", 4 ],
"max-len": [ "error", 100, 2, "max-len": [ "error", 100, 2,
{ {
"ignoreUrls": true, "ignoreUrls": true,
@ -285,8 +285,8 @@
"ignoreTemplateLiterals": true "ignoreTemplateLiterals": true
} }
], ],
"max-params": [ 0, 3 ], "max-params": [ "off", 3 ],
"max-statements": [ 0, 10 ], "max-statements": [ "off", 10 ],
"new-cap": [ "error", "new-cap": [ "error",
{ {
"newIsCap": true, "newIsCap": true,
@ -294,14 +294,14 @@
} }
], ],
"new-parens": "error", "new-parens": "error",
"newline-per-chained-call": 0, "newline-per-chained-call": "off",
"no-alert": "error", "no-alert": "error",
"no-array-constructor": "error", "no-array-constructor": "error",
"no-bitwise": "error", "no-bitwise": "error",
"no-caller": "error", "no-caller": "error",
"no-case-declarations": "error", "no-case-declarations": "error",
"no-catch-shadow": "error", "no-catch-shadow": "error",
"no-console": 0, "no-console": "off",
"no-const-assign": "error", "no-const-assign": "error",
"no-control-regex": "error", "no-control-regex": "error",
"no-debugger": "error", "no-debugger": "error",
@ -326,32 +326,32 @@
"no-label-var": "error", "no-label-var": "error",
"no-labels": "error", "no-labels": "error",
"no-loop-func": "error", "no-loop-func": "error",
"no-mixed-requires": [ 0, false ], "no-mixed-requires": [ "off", false ],
"no-multi-str": "error", "no-multi-str": "error",
"no-native-reassign": "error", "no-native-reassign": "error",
"no-nested-ternary": 0, "no-nested-ternary": "off",
"no-new-func": "error", "no-new-func": "error",
"no-new-object": "error", "no-new-object": "error",
"no-new-wrappers": "error", "no-new-wrappers": "error",
"no-obj-calls": "error", "no-obj-calls": "error",
"no-octal": "error", "no-octal": "error",
"no-octal-escape": "error", "no-octal-escape": "error",
"no-param-reassign": 0, "no-param-reassign": "off",
"no-plusplus": "error", "no-plusplus": "error",
"no-proto": "error", "no-proto": "error",
"no-redeclare": "error", "no-redeclare": "error",
"no-regex-spaces": "error", "no-regex-spaces": "error",
"no-restricted-syntax": 0, "no-restricted-syntax": "off",
"no-return-assign": "error", "no-return-assign": "error",
"no-script-url": "error", "no-script-url": "error",
"no-self-compare": "error", "no-self-compare": "error",
"no-shadow": 0, "no-shadow": "off",
"no-sync": "error", "no-sync": "error",
"no-ternary": 0, "no-ternary": "off",
"no-trailing-spaces": "error", "no-trailing-spaces": "error",
"no-undef": "error", "no-undef": "error",
"no-undef-init": "error", "no-undef-init": "error",
"no-underscore-dangle": 0, "no-underscore-dangle": "off",
"no-unneeded-ternary": [ "error", { "defaultAssignment": false } ], "no-unneeded-ternary": [ "error", { "defaultAssignment": false } ],
"no-unreachable": "error", "no-unreachable": "error",
"no-unused-expressions": "error", "no-unused-expressions": "error",
@ -368,12 +368,12 @@
// rule; only regex expressions haven't been updated yet. // rule; only regex expressions haven't been updated yet.
// Updated regex expressions are currently being tested in casper // Updated regex expressions are currently being tested in casper
// files and will decide about a potential future enforcement of this rule. // files and will decide about a potential future enforcement of this rule.
"no-useless-escape": 0, "no-useless-escape": "off",
"space-unary-ops": "error", "space-unary-ops": "error",
"no-whitespace-before-property": "error", "no-whitespace-before-property": "error",
"no-with": "error", "no-with": "error",
"one-var": [ "error", "never" ], "one-var": [ "error", "never" ],
"padded-blocks": 0, "padded-blocks": "off",
"prefer-const": [ "error", "prefer-const": [ "error",
{ {
"destructuring": "any", "destructuring": "any",
@ -387,7 +387,7 @@
"numbers": false "numbers": false
} }
], ],
"quotes": [ 0, "single" ], "quotes": [ "off", "single" ],
"radix": "error", "radix": "error",
"semi": "error", "semi": "error",
"semi-spacing": ["error", {"before": false, "after": true}], "semi-spacing": ["error", {"before": false, "after": true}],
@ -401,14 +401,14 @@
], ],
"space-in-parens": "error", "space-in-parens": "error",
"space-infix-ops": "error", "space-infix-ops": "error",
"spaced-comment": 0, "spaced-comment": "off",
"strict": 0, "strict": "off",
"template-curly-spacing": "error", "template-curly-spacing": "error",
"unnecessary-strict": 0, "unnecessary-strict": "off",
"use-isnan": "error", "use-isnan": "error",
"valid-typeof": [ "error", { "requireStringLiterals": true } ], "valid-typeof": [ "error", { "requireStringLiterals": true } ],
"wrap-iife": [ "error", "outside", { "functionPrototypeMethods": false } ], "wrap-iife": [ "error", "outside", { "functionPrototypeMethods": false } ],
"wrap-regex": 0, "wrap-regex": "off",
"yoda": "error" "yoda": "error"
}, },
"overrides": [ "overrides": [
@ -421,64 +421,64 @@
"plugins": ["@typescript-eslint"], "plugins": ["@typescript-eslint"],
"rules": { "rules": {
// Disable base rule to avoid conflict // Disable base rule to avoid conflict
"empty-returns/main": 0, "empty-returns/main": "off",
"indent": 0, "indent": "off",
"func-call-spacing": 0, "func-call-spacing": "off",
"no-magic-numbers": 0, "no-magic-numbers": "off",
"semi": 0, "semi": "off",
"no-unused-vars": 0, "no-unused-vars": "off",
"@typescript-eslint/adjacent-overload-signatures": "error", "@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": "error", "@typescript-eslint/array-type": "error",
"@typescript-eslint/await-thenable": "error", "@typescript-eslint/await-thenable": "error",
"@typescript-eslint/ban-types": "error", "@typescript-eslint/ban-types": "error",
"@typescript-eslint/ban-ts-ignore": 0, "@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/camelcase": 0, "@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "error", "@typescript-eslint/class-name-casing": "error",
"@typescript-eslint/explicit-function-return-type": ["error", { "allowExpressions": true }], "@typescript-eslint/explicit-function-return-type": ["error", { "allowExpressions": true }],
"@typescript-eslint/explicit-member-accessibility": 0, "@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/func-call-spacing": "error", "@typescript-eslint/func-call-spacing": "error",
"@typescript-eslint/generic-type-naming": 0, "@typescript-eslint/generic-type-naming": "off",
"@typescript-eslint/indent": "error", "@typescript-eslint/indent": "error",
"@typescript-eslint/interface-name-prefix": 0, "@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/member-delimiter-style": "error", "@typescript-eslint/member-delimiter-style": "error",
"@typescript-eslint/member-naming": ["error", { "private": "^_" } ], "@typescript-eslint/member-naming": ["error", { "private": "^_" } ],
"@typescript-eslint/member-ordering": "error", "@typescript-eslint/member-ordering": "error",
"@typescript-eslint/no-angle-bracket-type-assertion": "error", "@typescript-eslint/no-angle-bracket-type-assertion": "error",
"@typescript-eslint/no-array-constructor": "error", "@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error", "@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extraneous-class": "error", "@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": 0, "@typescript-eslint/no-for-in-array": "off",
"@typescript-eslint/no-inferrable-types": "error", "@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-magic-numbers": "error", "@typescript-eslint/no-magic-numbers": "error",
"@typescript-eslint/no-misused-new": "error", "@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error", "@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": 0, "@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-object-literal-type-assertion": "error", "@typescript-eslint/no-object-literal-type-assertion": "error",
"@typescript-eslint/no-parameter-properties": "error", "@typescript-eslint/no-parameter-properties": "error",
"@typescript-eslint/no-require-imports": 0, "@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-this-alias": 0, "@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-triple-slash-reference": "error", "@typescript-eslint/no-triple-slash-reference": "error",
"@typescript-eslint/no-type-alias": 0, "@typescript-eslint/no-type-alias": "off",
"@typescript-eslint/no-unnecessary-qualifier": "error", "@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unnecessary-type-assertion": "error", "@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_" } ], "@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_" } ],
"@typescript-eslint/no-use-before-define": "error", "@typescript-eslint/no-use-before-define": "error",
"@typescript-eslint/no-useless-constructor": "error", "@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-var-requires": 0, "@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/prefer-for-of": 0, "@typescript-eslint/prefer-for-of": "off",
"@typescript-eslint/prefer-function-type": 0, "@typescript-eslint/prefer-function-type": "off",
"@typescript-eslint/prefer-includes": "error", "@typescript-eslint/prefer-includes": "error",
"@typescript-eslint/prefer-interface": 0, "@typescript-eslint/prefer-interface": "off",
"@typescript-eslint/prefer-namespace-keyword": "error", "@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/prefer-regexp-exec": "error", "@typescript-eslint/prefer-regexp-exec": "error",
"@typescript-eslint/prefer-string-starts-ends-with": "error", "@typescript-eslint/prefer-string-starts-ends-with": "error",
"@typescript-eslint/promise-function-async": "error", "@typescript-eslint/promise-function-async": "error",
"@typescript-eslint/restrict-plus-operands": 0, "@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/semi": "error", "@typescript-eslint/semi": "error",
"@typescript-eslint/type-annotation-spacing": "error", "@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": 0, "@typescript-eslint/unbound-method": "off",
"@typescript-eslint/unified-signatures": "error" "@typescript-eslint/unified-signatures": "error"
} }
} }