Skip to content

Commit

Permalink
turn off warnings for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kiiskila-bcgov committed Aug 26, 2024
1 parent 13d44ac commit eaa6c16
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ module.exports = {
"warn",
{ allowConstantExport: true },
],
// temporarily convert some errors to warnings
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/ban-types": "warn",
"react-hooks/rules-of-hooks": "warn",
"react-hooks/exhaustive-deps": "warn",
"no-case-declarations": "warn",
// temporarily convert some errors to ignore
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": "off",
"react-hooks/rules-of-hooks": "off",
"react-hooks/exhaustive-deps": "off",
"no-case-declarations": "off",
},
};

0 comments on commit eaa6c16

Please sign in to comment.