Remove few rules from eslint

This commit is contained in:
Calli
2023-10-02 13:29:53 +03:00
parent cb9e55d439
commit 8fadb703a8

View File

@@ -16,12 +16,10 @@
"jsx": true
}
},
"plugins": [
"react",
"react-hooks"
],
"plugins": ["react", "react-hooks"],
"rules": {
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off"
"react/jsx-uses-react": "off",
"no-unused-vars": "off"
}
}