jsx-eslint/eslint-plugin-react
Voir sur GitHubRule proposal: forbid superfluous enclosing spaces in same-line jsx components
Open
#191 ouverte le 17 août 2015
help wantednew rule
Métriques du dépôt
- Stars
- (8 630 stars)
- Métriques de merge PR
- (Aucune PR mergée en 30 j)
Description
This would produce a warning:
<span> { tab.title } </span>
as it produces 3 <span> DOM nodes (typically not wanted)
This wouldn't:
<span>{ tab.title }</span>