eslint-plugin-react rule react/no-unknown-property false negatives on all props for threejs tags #2487
Replies: 14 comments 21 replies
-
Same issue here Even though there exist a property |
Beta Was this translation helpful? Give feedback.
-
This is still happening |
Beta Was this translation helpful? Give feedback.
-
Confirmed on <boxGeometry args={[2, 2, 2]} /> |
Beta Was this translation helpful? Give feedback.
-
Same issue. |
Beta Was this translation helpful? Give feedback.
-
Same issue here |
Beta Was this translation helpful? Give feedback.
-
Same issue :( |
Beta Was this translation helpful? Give feedback.
-
After severall hours of debugging. here's a solution I found that works.
"react/no-unknown-property": ["off", { "ignore": ["JSX"] }], |
Beta Was this translation helpful? Give feedback.
-
this ignores the error but doesn't solve the issue. |
Beta Was this translation helpful? Give feedback.
-
If you're using TypeScript, seems it's safe to disable
|
Beta Was this translation helpful? Give feedback.
-
same here |
Beta Was this translation helpful? Give feedback.
-
I have the same problems with "react/no-unknown-property" errors, is there any meaningful solution to this except turning the rule off? Appreciate any help |
Beta Was this translation helpful? Give feedback.
-
Hello, guys! I have the same problems with eslint 8.57.0 / typescript . My solution: I hope it can help you guys. |
Beta Was this translation helpful? Give feedback.
-
After updating eslint-plugin-react to the latest version, it complains on unknown properties. Just wanted to mention it here.
I've created an issue here:
jsx-eslint/eslint-plugin-react#3423
Beta Was this translation helpful? Give feedback.
All reactions