Skip to content

Commit

Permalink
make eslint config more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostOf0days authored Mar 17, 2024
1 parent 3024dac commit 65a2ab8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ module.exports = {
"@typescript-eslint/quotes": "off",
camelcase: "off",
"comma-dangle": "off",
"no-extra-semi": 2,
"no-irregular-whitespace": 2,
"no-lonely-if": 2,
"no-multi-spaces": 2,
"no-multiple-empty-lines": 2,
"no-trailing-spaces": 2,
"no-unexpected-multiline": 2,
"no-extra-semi": "error",
"no-irregular-whitespace": "error",
"no-lonely-if": "error",
"no-multi-spaces": "error",
"no-multiple-empty-lines": "error",
"no-trailing-spaces": "error",
"no-unexpected-multiline": "error",
"no-unreachable": "error",
"object-curly-spacing": ["error", "always"],
semi: ["warn", "never"],
Expand Down

0 comments on commit 65a2ab8

Please sign in to comment.