You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/rules/jsx-curly-brace-presence.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ will warned and fixed to:
139
139
140
140
* If the rule is set to get rid of unnecessary curly braces(JSX expression) and there are characters that need to be escaped in its JSX form, such as quote characters, [forbidden JSX text characters](https://facebook.github.io/jsx/), escaped characters and anything that looks like HTML entity names, the code will not be warned because the fix may make the code less readable.
141
141
142
-
The following pattern will not be given a warning even if `'never'` is passed.
142
+
The following pattern will **not** be given a warning even if `'never'` is passed.
Copy file name to clipboardexpand all lines: docs/rules/jsx-curly-spacing.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ When `{"when": "never"}` is set, the following patterns are considered warnings:
33
33
<Hello name={firstname } />;
34
34
```
35
35
36
-
The following patterns are not warnings:
36
+
The following patterns are **not** warnings:
37
37
38
38
```jsx
39
39
<Hello name={firstname} />;
@@ -57,7 +57,7 @@ When `{"when": "never", "children": true}` is set, the following patterns are co
57
57
<Hello>{ firstname }</Hello>;
58
58
```
59
59
60
-
The following patterns are not warnings:
60
+
The following patterns are **not** warnings:
61
61
62
62
```jsx
63
63
<Hello name={firstname} />;
@@ -81,7 +81,7 @@ When `{"when": "always"}` is set, the following patterns are considered warnings
81
81
<Hello name={firstname } />;
82
82
```
83
83
84
-
The following patterns are not warnings:
84
+
The following patterns are **not** warnings:
85
85
86
86
```jsx
87
87
<Hello name={ firstname } />;
@@ -105,7 +105,7 @@ When `{"when": "always", "children": true}` is set, the following patterns are c
105
105
<Hello>{firstname}</Hello>;
106
106
```
107
107
108
-
The following patterns are not warnings:
108
+
The following patterns are **not** warnings:
109
109
110
110
```jsx
111
111
<Hello name={ firstname } />;
@@ -138,7 +138,7 @@ When `"never"` is used and `allowMultiline` is `false`, the following patterns a
138
138
} />;
139
139
```
140
140
141
-
The following patterns are not warnings:
141
+
The following patterns are **not** warnings:
142
142
143
143
```jsx
144
144
<Hello name={firstname} />;
@@ -161,7 +161,7 @@ When `"always"` is used and `allowMultiline` is `false`, the following patterns
161
161
} />;
162
162
```
163
163
164
-
The following patterns are not warnings:
164
+
The following patterns are **not** warnings:
165
165
166
166
```jsx
167
167
<Hello name={ firstname } />;
@@ -183,7 +183,7 @@ When `{"when": "never", "attributes": {"allowMultiline": false}, "children": tru
183
183
<Hello>{ firstname }</Hello>;
184
184
```
185
185
186
-
The following patterns are not warnings:
186
+
The following patterns are **not** warnings:
187
187
188
188
```jsx
189
189
<Hello name={firstname} />;
@@ -207,13 +207,13 @@ You can specify an additional `spacing` property that is an object with the foll
207
207
208
208
All spacing options accept either the string `"always"` or the string `"never"`. Note that the default value for all "spacing" options matches the first "always"/"never" option provided.
209
209
210
-
When `"always"` is used but `objectLiterals` is `"never"`, the following pattern is not considered a warning:
210
+
When `"always"` is used but `objectLiterals` is `"never"`, the following pattern is **not** considered a warning:
211
211
212
212
```jsx
213
213
<App blah={ 3 } foo={{ bar:true, baz:true }} />;
214
214
```
215
215
216
-
When `"never"` is used and `objectLiterals` is `"always"`, the following pattern is not considered a warning:
216
+
When `"never"` is used and `objectLiterals` is `"always"`, the following pattern is **not** considered a warning:
0 commit comments