Skip to content

Commit

Permalink
fix(rules): remove rules set to off
Browse files Browse the repository at this point in the history
  • Loading branch information
blackfalcon committed Jul 1, 2021
1 parent c97182a commit 814690f
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ module.exports = {
"block-spacing": "error",
"brace-style": "error",
"camelcase": "error",
"capitalized-comments": "off",
"class-methods-use-this": "off",
"comma-dangle": "off",
"comma-spacing": ["error", {
"after": true,
"before": false
Expand All @@ -55,7 +52,6 @@ module.exports = {
"eqeqeq": "error",
"func-call-spacing": "error",
"func-name-matching": "error",
"func-names": "off",
"function-paren-newline": "error",
"generator-star-spacing": "error",
"grouped-accessor-pairs": "error",
Expand All @@ -72,7 +68,6 @@ module.exports = {
}
],
"init-declarations": "error",
"key-spacing": "off",
"keyword-spacing": ["error", {
"after": true,
"before": true
Expand All @@ -83,13 +78,10 @@ module.exports = {
"lines-between-class-members": ["error", "always"],
"max-classes-per-file": "error",
"max-depth": "error",
"max-len": "off",
"max-lines": "error",
"max-lines-per-function": "off",
"max-nested-callbacks": "error",
"max-params": "error",
"max-statements-per-line": "error",
"multiline-comment-style": "off",
"new-cap": "error",
"new-parens": "error",
"newline-per-chained-call": "error",
Expand All @@ -105,7 +97,6 @@ module.exports = {
"no-div-regex": "error",
"no-duplicate-imports": "error",
"no-else-return": "error",
"no-empty-function": "off",
"no-eq-null": "error",
"no-eval": "error",
"no-extend-native": "error",
Expand All @@ -117,7 +108,6 @@ module.exports = {
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-inline-comments": "error",
"no-invalid-this": "off",
"no-iterator": "error",
"no-label-var": "error",
"no-labels": "error",
Expand Down Expand Up @@ -157,11 +147,9 @@ module.exports = {
"no-shadow": "error",
"no-tabs": "error",
"no-template-curly-in-string": "error",
"no-ternary": "off",
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef-init": "error",
"no-undefined": "off",
"no-underscore-dangle": "error",
"no-unmodified-loop-condition": "error",
"no-unneeded-ternary": "error",
Expand All @@ -179,13 +167,11 @@ module.exports = {
"no-whitespace-before-property": "error",
"nonblock-statement-body-position": "error",
"object-curly-newline": "error",
"object-curly-spacing": "off",
"object-property-newline": "error",
"object-shorthand": "error",
"one-var-declaration-per-line": "error",
"operator-assignment": "error",
"operator-linebreak": "error",
"padded-blocks": "off",
"padding-line-between-statements": "error",
"prefer-arrow-callback": "error",
"prefer-const": "error",
Expand All @@ -199,19 +185,14 @@ module.exports = {
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"quote-props": "off",
"quotes": "off",
"radix": "error",
"require-await": "error",
"require-unicode-regexp": "error",
"rest-spread-spacing": ["error", "never"],
"semi": "off",
"semi-spacing": "error",
"semi-style": ["error", "last"],
"sort-keys": "off",
"sort-vars": "error",
"space-before-blocks": "error",
"space-before-function-paren": "off",
"space-in-parens": ["error", "never"],
"space-infix-ops": "error",
"space-unary-ops": "error",
Expand Down

0 comments on commit 814690f

Please sign in to comment.