Skip to content

Commit

Permalink
eslint: Disable no-explicit-any rule
Browse files Browse the repository at this point in the history
Sometimes anything is something.
  • Loading branch information
rafaellehmkuhl committed Nov 5, 2024
1 parent 3798327 commit 932e0d6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ module.exports = {
'@typescript-eslint/no-useless-constructor': ['error'],
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/explicit-function-return-type': ['error', { allowExpressions: true }],
'@typescript-eslint/no-explicit-any': 'off',
'vue/no-unused-properties': [
'error',
{
Expand Down

0 comments on commit 932e0d6

Please sign in to comment.