Move react setup to react specific file

This commit is contained in:
Manav Rathi 2024-04-03 13:02:09 +05:30
parent ca688d0d46
commit 764b6bf2f3
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -10,9 +10,6 @@ module.exports = {
parserOptions: {
project: true,
},
settings: {
react: { version: "18.2" },
},
root: true,
ignorePatterns: [".eslintrc.js"],
};

View file

@ -5,4 +5,7 @@ module.exports = {
"plugin:react/recommended",
"plugin:react-hooks/recommended",
],
settings: {
react: { version: "18.2" },
},
};