Skip to content

Commit

Permalink
disable 'any' and 'ban types' keywords warning
Browse files Browse the repository at this point in the history
Signed-off-by: priyanshu-kun <priyanshushrama709@gmail.com>
  • Loading branch information
priyanshu-kun committed Sep 17, 2023
1 parent c0521d0 commit c715bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ module.exports = {
'prefer-destructuring': 0,

/* tsx */
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-var-requires': 'warn',
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/ban-types': 'warn',
'@typescript-eslint/ban-types': 0,
'@typescript-eslint/ban-ts-comment': 0,

/* jsx */
Expand Down

0 comments on commit c715bd4

Please sign in to comment.