Comments (2)
This has nothing to do with rules of hooks. What you want is type checking, that is what TypeScript is for
from react.
@vkurchatkin Yes, a realize a full and complete solution to this requires a type checking system to fully evaluate the return type. However, it seems there are at least a few cases we could check for with lint rules, and that would handle 95% of the basic cases. For example, I came upon uses return "none";
and return null;
, which are clearly not allowed and easily caught by a lint rule. Anything other than a bare return
, undefined
, or an arrow function is probably an error.
from react.
Related Issues (20)
- [DevTools Bug]: DevTools settings are not being saved in the Edge browser HOT 11
- Draft
- [DevTools Bug] Could not find node with id "364" in commit tree HOT 1
- help! React useSelector returns undefined first, then object HOT 3
- [DevTools Bug] Cannot add node "108084" because a node with that id is already in the Store. HOT 1
- Bug:
- Bug:
- Cannot read properties of undefined (reading 'create') HOT 2
- react
- Warnings only logged once even for different roots and renders HOT 1
- When debugging React v18 source code, I installed @babel/preset-flow as prompted, but I still get an error. HOT 2
- When I reload deployed reactjs app on any page other than main routes it says not found HOT 4
- Bug: The scroll bar of the sidebar is getting hidden while hovering in the describing UI section (in Learn React). HOT 5
- Bug: updating state to an existing value is (incorrectly?) triggering a re-render HOT 5
- e.stopPropagation() and dropdown HOT 2
- Bug: HOT 2
- Bug: autoFocus cannot be used with an anchor (link) HOT 6
- Bug: 打包后报错 HOT 4
- Bug: MessageChannel in Scheduler prevents Jest test from exiting
- Bug: Suspense should hide Portals deeper in the tree
Recommend Projects
-
React
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
Vue.js
🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
Typescript
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
TensorFlow
An Open Source Machine Learning Framework for Everyone
-
Django
The Web framework for perfectionists with deadlines.
-
Laravel
A PHP framework for web artisans
-
D3
Bring data to life with SVG, Canvas and HTML. 📊📈🎉
-
Recommend Topics
-
javascript
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
web
Some thing interesting about web. New door for the world.
-
server
A server is a program made to process requests and deliver data to clients.
-
Machine learning
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Visualization
Some thing interesting about visualization, use data art
-
Game
Some thing interesting about game, make everyone happy.
Recommend Org
-
Facebook
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Microsoft
Open source projects and samples from Microsoft.
-
Google
Google ❤️ Open Source for everyone.
-
Alibaba
Alibaba Open Source for everyone
-
D3
Data-Driven Documents codes.
-
Tencent
China tencent open source team.
from react.