React Guideline: Hooks — Name custom hooks with use prefix. Description: Custom hooks must start with use. Do: useFetch useForm useAuth. Don't: fetchData or getData for hook. Good Example: function useFetch(url). Bad Example: function fetchData(url). Severity: High. Docs: .