-
- Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
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' />