javascript icon indicating copy to clipboard operation
javascript copied to clipboard

JavaScript Code Conventions

Results 1 javascript issues
Sort by recently updated
recently updated
newest added

In a function library with no React import, `zillow/react-hooks/rules-of-hooks` errors out on any function prefaced with `use`. ``` function useFeature(data) { return (data && data.feature); } ``` ``` error React...