Skip to content

Commit

Permalink
style: suppress new eslint-plugin-react errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Dec 16, 2023
1 parent 95c2af9 commit 3fadd45
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ module.exports = {
browser: true
},
rules: {
// BEGIN: these caused trouble after upgrading eslint-plugin-react from 7.20.3 to 7.33.2
'react/forbid-prop-types': 'off',
'react/no-unknown-property': 'off',
// END: these caused trouble after upgrading eslint-plugin-react from 7.20.3 to 7.33.2
'import/no-mutable-exports': 'error',
'import/no-commonjs': 'error',
'import/no-amd': 'error',
Expand Down

0 comments on commit 3fadd45

Please sign in to comment.