Closed
Description
Describe the bug
Starting with version 1.29.0, the following case is considered invalid:
const [myCount, setMyCount] = useState(0);
Whereas the example shown below in the docs works:
const [count, setCount] = useState(0);
Reproduction
See above.
Expected behavior
This case should be considered valid.
Platform and versions
@eslint-react/eslint-plugin: 1.29.0
Stack trace
Additional context
No response