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 1008066
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 @@ -43,6 +43,7 @@ module.exports = {
'max-len': ['error', { code: 180, ignoreUrls: true, ignoreComments: true }],
'no-alert': 'off',
'no-console': 'off',
'no-explicit-any': 'off',
'no-continue': 'off',
// modified https://github.com/airbnb/javascript/blob/master/packages/eslint-config-airbnb-base/rules/style.js#L339
// In our opinion, readability comes first and ForOF statements are more readable,
Expand Down

0 comments on commit 1008066

Please sign in to comment.