Skip to content

Commit 006195a

Browse files
committed
disable react/no-deprecated
1 parent c4eda71 commit 006195a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ export default {
536536
"import-x/no-commonjs": [2, {"allowConditionalRequire": false}],
537537
"import-x/no-cycle": [2, {"ignoreExternal": true, "maxDepth": 1}], // disableScc is a massive speed gain for eslint-plugin-import
538538
"import-x/no-default-export": [0],
539-
"import-x/no-deprecated": [0],
539+
"import-x/no-deprecated": [0], // handled by @typescript-eslint/no-deprecated
540540
"import-x/no-duplicates": [2],
541541
"import-x/no-dynamic-require": [0],
542542
"import-x/no-empty-named-blocks": [2],
@@ -744,7 +744,7 @@ export default {
744744
"react/no-children-prop": [2],
745745
"react/no-danger": [0],
746746
"react/no-danger-with-children": [0],
747-
"react/no-deprecated": [2],
747+
"react/no-deprecated": [0], // handlded by @typescript-eslint/no-deprecated
748748
"react/no-did-mount-set-state": [0],
749749
"react/no-did-update-set-state": [0],
750750
"react/no-direct-mutation-state": [0], // slow

0 commit comments

Comments
 (0)