diff --git a/src/.eslintrc.js b/src/.eslintrc.js
index caa0db5f..1459beb3 100644
--- a/src/.eslintrc.js
+++ b/src/.eslintrc.js
@@ -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',