@@ -28,7 +28,7 @@ If it is `"never"`, the check warns whenever a space is separating the two chara
28
28
29
29
The following patterns are considered warnings when configured ` "never" ` :
30
30
31
- ``` js
31
+ ``` jsx
32
32
< App/ >
33
33
< input/
34
34
>
@@ -37,22 +37,22 @@ The following patterns are considered warnings when configured `"never"`:
37
37
38
38
The following patterns are not considered warnings when configured ` "never" ` :
39
39
40
- ``` js
40
+ ``` jsx
41
41
< App/ >
42
42
< input/ >
43
43
< Provider>< / Provider>
44
44
```
45
45
46
46
The following patterns are considered warnings when configured ` "always" ` :
47
47
48
- ``` js
48
+ ``` jsx
49
49
< Hello/ >
50
50
< Goodbye>< / Goodbye>
51
51
```
52
52
53
53
The following patterns are not considered warnings when configured ` "never" ` :
54
54
55
- ``` js
55
+ ``` jsx
56
56
< Hello/ >
57
57
< Goodbye>< / Goodbye>
58
58
```
@@ -65,14 +65,14 @@ If it is `"always"`, the check warns whenever a space is missing before the clos
65
65
66
66
The following patterns are considered warnings when configured ` "always" ` :
67
67
68
- ``` js
68
+ ``` jsx
69
69
< Hello/ >
70
70
< Hello firstname= " John" / >
71
71
```
72
72
73
73
The following patterns are not considered warnings when configured ` "always" ` :
74
74
75
- ``` js
75
+ ``` jsx
76
76
< Hello / >
77
77
< Hello firstName= " John" / >
78
78
< Hello
@@ -83,14 +83,14 @@ The following patterns are not considered warnings when configured `"always"`:
83
83
84
84
The following patterns are considered warnings when configured ` "never" ` :
85
85
86
- ``` js
86
+ ``` jsx
87
87
< Hello / >
88
88
< Hello firstName= " John" / >
89
89
```
90
90
91
91
The following patterns are not considered warnings when configured ` "never" ` :
92
92
93
- ``` js
93
+ ``` jsx
94
94
< Hello/ >
95
95
< Hello firstname= " John" / >
96
96
< Hello
@@ -107,7 +107,7 @@ If it is `"always"`, the check warns whenever a space is missing after the openi
107
107
108
108
The following patterns are considered warnings when configured ` "always" ` :
109
109
110
- ``` js
110
+ ``` jsx
111
111
< Hello>< / Hello>
112
112
< Hello firstname= " John" / >
113
113
< Hello
@@ -118,7 +118,7 @@ The following patterns are considered warnings when configured `"always"`:
118
118
119
119
The following patterns are not considered warnings when configured ` "always" ` :
120
120
121
- ``` js
121
+ ``` jsx
122
122
< Hello>< / Hello>
123
123
< Hello firstName= " John" / >
124
124
<
@@ -130,7 +130,7 @@ The following patterns are not considered warnings when configured `"always"`:
130
130
131
131
The following patterns are considered warnings when configured ` "never" ` :
132
132
133
- ``` js
133
+ ``` jsx
134
134
< Hello>< / Hello>
135
135
< Hello firstName= " John" / >
136
136
<
@@ -142,7 +142,7 @@ The following patterns are considered warnings when configured `"never"`:
142
142
143
143
The following patterns are not considered warnings when configured ` "never" ` :
144
144
145
- ``` js
145
+ ``` jsx
146
146
< Hello>< / Hello>
147
147
< Hello firstname= " John" / >
148
148
< Hello
@@ -153,7 +153,7 @@ The following patterns are not considered warnings when configured `"never"`:
153
153
154
154
The following patterns are considered warnings when configured ` "allow-multiline" ` :
155
155
156
- ``` js
156
+ ``` jsx
157
157
< Hello>< / Hello>
158
158
< Hello firstName= " John" / >
159
159
< Hello
@@ -164,7 +164,7 @@ The following patterns are considered warnings when configured `"allow-multiline
164
164
165
165
The following patterns are not considered warnings when configured ` "allow-multiline" ` :
166
166
167
- ``` js
167
+ ``` jsx
168
168
< Hello>< / Hello>
169
169
< Hello firstName= " John" / >
170
170
<
0 commit comments