Skip to content

Commit

Permalink
added error types to eslintrc ignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
ogometz committed Nov 16, 2024
1 parent f3e82d5 commit 002a10a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@
"no-global-assign": "off",
"no-return-assign": "off",
"no-return-in-global-scope": "off",
"no-global-return": "off"
"no-global-return": "off",
"comma-dangle": "off",
"n/no-callback-literal": "off",
"semi": "off",
"space-before-function-paren": "off",
"quotes": "off",
"indent": "off",
"eqeqeq": "off",
"no-unused-vars": "off",
"space-infix-ops": "off",
"dot-notation": "off",
"eol-last": "off"
},
"parserOptions": {
"ecmaVersion": 2021,
Expand Down

0 comments on commit 002a10a

Please sign in to comment.