Closed
Description
opened on Jul 7, 2015
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}
/>
Activity