Closed
Description
opened on Mar 7, 2015
Similar to ESLint's built-in quotes rule, it would be nice to have a rule that enforces the style of quotes used for props. For instance, if set to "double":
Good:
<MyComponent myProp="value" />
Bad:
<MyComponent myProp='value' />
Activity