We provide an ESLint plugin that enforces rules of Hooks to avoid bugs. It assumes that any function starting with ”use
” and a capital letter right after it is a Hook. We recognize this heuristic isn’t perfect and there may be some false positives, but without an ecosystem-wide convention there is just no way to make Hooks work well — and longer names will discourage people from either adopting Hooks or following the convention.
In particular, the rule enforces that:
PascalCase
function (assumed to be a component) or another useSomething
function (assumed to be a custom Hook).There are a few more heuristics, and they might change over time as we fine-tune the rule to balance finding bugs with avoiding false positives.
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.