Pattern: Malformed space around =
Issue: -
Requires or bans spaces before and after the =
token in JSX element attributes. Rule options: ["always", "never"]
.
Example of incorrect code (always
):
<App someProp="test" />
Example of correct code (always
):
<App someProp = "test" />