aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index bbf0e6022..fd4ff7516 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -70,14 +70,16 @@ module.exports = {
70 'import/no-unresolved': 0, 70 'import/no-unresolved': 0,
71 'import/prefer-default-export': 0, 71 'import/prefer-default-export': 0,
72 // eslint-plugin-react 72 // eslint-plugin-react
73 'react/default-props-match-prop-types': 1, 73 // TODO - [TS DEBT] should remove below config once application converted to TS
74 'react/default-props-match-prop-types': 0,
75 'react/require-default-props': 0,
76 // eslint-plugin-react
74 'react/destructuring-assignment': 0, 77 'react/destructuring-assignment': 0,
75 'react/button-has-type': 0, 78 'react/button-has-type': 0,
76 'react/forbid-prop-types': 0, 79 'react/forbid-prop-types': 0,
77 'react/jsx-curly-newline': 0, 80 'react/jsx-curly-newline': 0,
78 'react/no-unused-prop-types': 1, 81 'react/no-unused-prop-types': 1,
79 'react/react-in-jsx-scope': 0, 82 'react/react-in-jsx-scope': 0,
80 'react/require-default-props': 1,
81 'react/jsx-no-bind': 0, 83 'react/jsx-no-bind': 0,
82 'react/jsx-no-target-blank': 0, 84 'react/jsx-no-target-blank': 0,
83 'react/jsx-props-no-spreading': 0, 85 'react/jsx-props-no-spreading': 0,