Skip to content

Commit

Permalink
eslintrc- add missing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Apr 17, 2022
1 parent 5ce2be4 commit 3d6337c
Showing 1 changed file with 85 additions and 60 deletions.
145 changes: 85 additions & 60 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,65 +32,90 @@
],
"extends": "eslint:all",
"rules": {
"strict":"off",
"space-before-function-paren":"off",
"padded-blocks":"off",
"no-magic-numbers":"off",
"camelcase":"off",
"lines-around-comment":"off",
"object-curly-spacing":"off",
"lines-between-class-members":"off",
"function-call-argument-newline":"off",
"id-length":"off",
"one-var":"off",
"prefer-destructuring":"off",
"func-style":["error", "declaration"],
"brace-style":"off",
"max-statements-per-line":"off",
"max-len":"off",
"sort-imports":"off",
"max-statements":"off",
"func-names":["error", "never"],
"quote-props":"off",
"capitalized-comments":"off",
"array-element-newline":"off",
"comma-dangle":"off",
"newline-per-chained-call":"off",
"comma-spacing":"off",
"prefer-template":"off",
"no-console":"off",
"no-await-in-loop":"off",
"array-bracket-newline":["error", "consistent"],
"curly":["error", "multi-line"],
"no-param-reassign":"off",
"no-ternary":"off",
"multiline-ternary":"off",
"multiline-comment-style":"off",
"max-params":"off",
"space-infix-ops":"off",
"object-property-newline":"off",
"wrap-iife":["error", "inside"],
"max-lines-per-function":"off",
"no-undefined":"off",
"sort-keys":"off",
"new-cap":"off",
"no-plusplus":"off",
"indent":["error", 4, { "SwitchCase": 1, "MemberExpression": 0 }],
"key-spacing":"off",
"no-continue":"off",
"require-atomic-updates":"off",
"prefer-named-capture-group":"off",
"arrow-body-style":"off",
"no-useless-constructor":"off",
"no-use-before-define":"off",
"consistent-this":"off",
"dot-location":["error", "property"],
"no-new":"off",
"no-underscore-dangle":"off",
"require-await":"off",
"no-negated-condition":"off",
"object-shorthand":"off",
"guard-for-in":"off",
"consistent-return":"off"
"strict": "off",
"space-before-function-paren": "off",
"padded-blocks": "off",
"no-magic-numbers": "off",
"camelcase": "off",
"lines-around-comment": "off",
"object-curly-spacing": "off",
"lines-between-class-members": "off",
"function-call-argument-newline": "off",
"id-length": "off",
"one-var": "off",
"prefer-destructuring": "off",
"func-style": [
"error",
"declaration"
],
"brace-style": "off",
"max-statements-per-line": "off",
"max-len": "off",
"sort-imports": "off",
"max-statements": "off",
"func-names": [
"error",
"never"
],
"quote-props": "off",
"capitalized-comments": "off",
"array-element-newline": "off",
"comma-dangle": "off",
"newline-per-chained-call": "off",
"comma-spacing": "off",
"prefer-template": "off",
"no-console": "off",
"no-await-in-loop": "off",
"array-bracket-newline": [
"error",
"consistent"
],
"curly": [
"error",
"multi-line"
],
"no-param-reassign": "off",
"no-ternary": "off",
"multiline-ternary": "off",
"multiline-comment-style": "off",
"max-params": "off",
"space-infix-ops": "off",
"object-property-newline": "off",
"wrap-iife": [
"error",
"inside"
],
"max-lines-per-function": "off",
"no-undefined": "off",
"sort-keys": "off",
"new-cap": "off",
"no-plusplus": "off",
"indent": [
"error",
4,
{
"SwitchCase": 1,
"MemberExpression": 0
}
],
"key-spacing": "off",
"no-continue": "off",
"require-atomic-updates": "off",
"prefer-named-capture-group": "off",
"arrow-body-style": "off",
"no-useless-constructor": "off",
"no-use-before-define": "off",
"consistent-this": "off",
"dot-location": [
"error",
"property"
],
"no-new": "off",
"no-underscore-dangle": "off",
"require-await": "off",
"no-negated-condition": "off",
"object-shorthand": "off",
"guard-for-in": "off",
"consistent-return": "off",
}
}

0 comments on commit 3d6337c

Please sign in to comment.