We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4eda71 commit 006195aCopy full SHA for 006195a
eslintrc.js
@@ -536,7 +536,7 @@ export default {
536
"import-x/no-commonjs": [2, {"allowConditionalRequire": false}],
537
"import-x/no-cycle": [2, {"ignoreExternal": true, "maxDepth": 1}], // disableScc is a massive speed gain for eslint-plugin-import
538
"import-x/no-default-export": [0],
539
- "import-x/no-deprecated": [0],
+ "import-x/no-deprecated": [0], // handled by @typescript-eslint/no-deprecated
540
"import-x/no-duplicates": [2],
541
"import-x/no-dynamic-require": [0],
542
"import-x/no-empty-named-blocks": [2],
@@ -744,7 +744,7 @@ export default {
744
"react/no-children-prop": [2],
745
"react/no-danger": [0],
746
"react/no-danger-with-children": [0],
747
- "react/no-deprecated": [2],
+ "react/no-deprecated": [0], // handlded by @typescript-eslint/no-deprecated
748
"react/no-did-mount-set-state": [0],
749
"react/no-did-update-set-state": [0],
750
"react/no-direct-mutation-state": [0], // slow
0 commit comments