Linting
If you have used a version of create-catalyst-app
< 0.0.1-beta.4
to set up your application, you will have to setup linting yourself.
- Install eslint, eslint-plugin-react, and eslint-plugin-react-hooks
npm i eslint eslint-plugin-react eslint-plugin-react-hooks
- Add .eslintrc with the following config
{
"rules": {
"react-hooks/exhaustive-deps": "error" // Checks effect dependencies
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"plugins": [
"react",
"react-hooks"
],
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
}
}
You can tweak this .eslintrc file for any rules or plugins you want to add or remove.