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
Simply a rule to enforce or disallow spaces around the = in JSX elements
"jsx-equals-spacing": [2, "always" || "never"]
Warning when set to "never":
<Hello name = {firstname} />;
Warning when set to "always":
<Hello name={firstname} />;
Defaults to "never" to match Facebook examples
The text was updated successfully, but these errors were encountered:
Add jsx-equals-spacing rule (fixes jsx-eslint#394)
c61caa7
e317d03
d2b6de3
Thanks!
Sorry, something went wrong.
No branches or pull requests
Simply a rule to enforce or disallow spaces around the = in JSX elements
Warning when set to "never":
Warning when set to "always":
Defaults to "never" to match Facebook examples
The text was updated successfully, but these errors were encountered: