We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f27285f + 1615ae8 commit c3e57c7Copy full SHA for c3e57c7
docs/rules/jsx-one-expression-per-line.md
@@ -20,15 +20,15 @@ The following patterns are considered warnings:
20
</Hello></App>
21
22
<App>
23
- </Hello> World
+ <Hello /> World
24
</App>
25
26
27
- </Hello> { 'World' }
+ <Hello /> { 'World' }
28
29
30
31
- </Hello> { this.world() }
+ <Hello /> { this.world() }
32
33
34
@@ -64,17 +64,17 @@ The following patterns are **not** warnings:
64
65
66
67
- </Hello>
+ <Hello />
68
World
69
70
71
72
73
{ 'World' }
74
75
76
77
78
{ this.world() }
79
80
0 commit comments