Skip to content

Commit

Permalink
Disable rules that cause errors in unchanged files
Browse files Browse the repository at this point in the history
  • Loading branch information
witoszekdev committed Jan 3, 2024
1 parent 76029cb commit f2844ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
"@typescript-eslint/no-misused-promises": ["error"],
"@typescript-eslint/no-floating-promises": ["error"],
"class-methods-use-this": "off",
"no-new": "off"
"no-new": "off",
"@typescript-eslint/no-redeclare": "off",
"@typescript-eslint/naming-convention": "off"
},
"settings": {
"import/parsers": {
Expand Down

0 comments on commit f2844ec

Please sign in to comment.