I am getting the following eslint error after adding // eslint-disable-next-line react-hooks/exhaustive-deps in my code.
// eslint-disable-next-line react-hooks/exhaustive-deps
8:14 error Definit
This typically happens because the react-hooks plugin is missing in the .eslintrc plugin configuration. Ensure you have added react-hooks as in the example below:
react-hooks
.eslintrc
"plugins": ["react", "react-hooks",],