Great articles! For my taste also these are good to have:
// in .eslintrc.js
"extends": [
...
// already there
"plugin:react/recommended",
// warn when rules of hooks are violated
"plugin:react-hooks/recommended",
// disable requirements to import react at the top of the file
// requires to "npm i -D eslint-plugin-react-hooks"
"plugin:react/jsx-runtime",
]
...