Closed
Description
Today React gave me an "unknown prop" warning:
In this example, I gave my div
element an abc
attribute, which is obviously invalid HTML.
I was surprised that my linter didn't pick up on this. Looking at the documentation, the name and description of the no-unknown-property
rule lead me to believe that this should be caught, but that doesn't appear to be the case.
So, I suppose this is a feature request: add a rule to catch invalid DOM properties.