-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Closed
Labels
Description
This is similar to object-curly-spacing.
There are two main options for the rule:
"always"
enforces a space inside of curly braces
<Component
foo={ prop1 }
bar={ prop2 }
/>
"never"
disallows spaces inside of curly braces
<Component
foo={prop1}
bar={prop2}
/>