Skip to content

Commit

Permalink
Update ESLint config to fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matthesjh committed Oct 7, 2024
1 parent 8cbe144 commit cc3b131
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
"key-spacing": ["error", {"beforeColon": false, "afterColon": true}],
"keyword-spacing": ["error", {"before": true, "after": true}],
"linebreak-style": ["error", "unix"],
"multiline-comment-style": ["error", "starred-block"],
"new-cap": "error",
"new-parens": "error",
"no-array-constructor": "error",
Expand All @@ -92,7 +91,7 @@
"space-before-function-paren": ["error", "never"],
"space-in-parens": ["error", "never"],
"space-infix-ops": "error",
"spaced-comment": ["error", "always"],
"spaced-comment": ["error", "always", {"markers": ["/"]}],
"switch-colon-spacing": ["error", {"before": false, "after": true}],
"arrow-body-style": ["error", "as-needed", {"requireReturnForObjectLiteral": false}],
"arrow-parens": ["error", "as-needed"],
Expand Down

0 comments on commit cc3b131

Please sign in to comment.