We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for
label
I have a Table.Index component with for prop.
Table.Index
the rule enforces me to use htmlFor instead and incorrectly auto replaces it when I run eslint --fix
htmlFor
eslint --fix
The text was updated successfully, but these errors were encountered:
Hmm, this rule should be ignoring non-DOM elements. Can you provide the full code and full warning text?
Sorry, something went wrong.
function Foo ({ collection }) { return <Table.Index for={ collection } />; }
[Fix]no-unknown-property: fix case like <Foo.bar>
no-unknown-property
<Foo.bar>
c4a811a
Fixes jsx-eslint#2204
6bb1604
No branches or pull requests
I have a
Table.Index
component withfor
prop.the rule enforces me to use
htmlFor
instead and incorrectly auto replaces it when I runeslint --fix
The text was updated successfully, but these errors were encountered: