Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 337 Bytes

jsx-equals-spacing.md

File metadata and controls

19 lines (12 loc) · 337 Bytes

Pattern: Malformed space around =

Issue: -

Description

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" />