Skip to content

Commit 41d9809

Browse files
committed
Make negative adverbs above snippets bold
Increase legibility of negative sentences in counter examples. Closes jsx-eslint#1503
1 parent 329857d commit 41d9809

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+114
-114
lines changed

docs/rules/boolean-prop-naming.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var Hello = createReactClass({
1515
});
1616
```
1717

18-
The following patterns are not considered warnings:
18+
The following patterns are **not** considered warnings:
1919

2020
```jsx
2121
var Hello = createReactClass({
@@ -64,4 +64,4 @@ For supporting "is" naming:
6464

6565
```jsx
6666
"react/boolean-prop-naming": ["error", { "rule": "^is[A-Z]([A-Za-z0-9]?)+" }]
67-
```
67+
```

docs/rules/default-props-match-prop-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ MyStatelessComponent.defaultProps = {
9898
}
9999
```
100100

101-
The following patterns are not considered warnings:
101+
The following patterns are **not** considered warnings:
102102

103103
```jsx
104104
function MyStatelessComponent({ foo, bar }) {

docs/rules/display-name.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var Hello = createReactClass({
1414
});
1515
```
1616

17-
The following patterns are not considered warnings:
17+
The following patterns are **not** considered warnings:
1818

1919
```jsx
2020
var Hello = createReactClass({
@@ -37,7 +37,7 @@ var Hello = createReactClass({
3737

3838
When `true` the rule will ignore the name set by the transpiler and require a `displayName` property in this case.
3939

40-
The following patterns are considered okay and do not cause warnings:
40+
The following patterns are considered okay and do **not** cause warnings:
4141

4242
```jsx
4343
var Hello = createReactClass({

docs/rules/forbid-component-props.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following patterns are considered warnings:
1717
<Hello style={{color: 'red'}} />
1818
```
1919

20-
The following patterns are not considered warnings:
20+
The following patterns are **not** considered warnings:
2121

2222
```jsx
2323
<Hello name='Joe' />

docs/rules/forbid-elements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ An array of strings and/or objects. An object in this array may have the followi
2323

2424
A string item in the array is a shorthand for `{ element: string }`.
2525

26-
The following patterns are not considered warnings:
26+
The following patterns are **not** considered warnings:
2727

2828
```jsx
2929
// [1, { "forbid": ["button"] }]

docs/rules/forbid-foreign-prop-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var { propTypes } = SomeComponent;
1919
SomeComponent['propTypes'];
2020
```
2121

22-
The following patterns are not considered warnings:
22+
The following patterns are **not** considered warnings:
2323

2424
```js
2525
import SomeComponent, {propTypes as someComponentPropTypes} from './SomeComponent';

docs/rules/jsx-boolean-value.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The following patterns are considered warnings when configured `"never"`, or wit
1616
var Hello = <Hello personal={true} />;
1717
```
1818

19-
The following patterns are not considered warnings when configured `"never"`, or with `"always", { "never": ["personal"] }`:
19+
The following patterns are **not** considered warnings when configured `"never"`, or with `"always", { "never": ["personal"] }`:
2020

2121
```jsx
2222
var Hello = <Hello personal />;
@@ -28,7 +28,7 @@ The following patterns are considered warnings when configured `"always"`, or wi
2828
var Hello = <Hello personal />;
2929
```
3030

31-
The following patterns are not considered warnings when configured `"always"`, or with `"never", { "always": ["personal"] }`:
31+
The following patterns are **not** considered warnings when configured `"always"`, or with `"never", { "always": ["personal"] }`:
3232

3333
```jsx
3434
var Hello = <Hello personal={true} />;

docs/rules/jsx-closing-bracket-location.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following patterns are considered warnings:
2121
/>;
2222
```
2323

24-
The following patterns are not considered warnings:
24+
The following patterns are **not** considered warnings:
2525

2626
```jsx
2727
<Hello firstName="John" lastName="Smith" />;
@@ -138,7 +138,7 @@ var x = function() {
138138
</Say>;
139139
```
140140

141-
The following patterns are not considered warnings:
141+
The following patterns are **not** considered warnings:
142142

143143
```jsx
144144
// 'jsx-closing-bracket-location': 1

docs/rules/jsx-closing-tag-location.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following patterns are considered warnings:
2121
marklar</Hello>
2222
```
2323

24-
The following are not considered warnings:
24+
The following are **not** considered warnings:
2525

2626
```jsx
2727
<Hello>

docs/rules/jsx-curly-brace-presence.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ will warned and fixed to:
139139

140140
* 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.
141141

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.
143143

144144
```jsx
145145
<Color text={"\u00a0"} />

docs/rules/jsx-curly-spacing.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ When `{"when": "never"}` is set, the following patterns are considered warnings:
3333
<Hello name={firstname } />;
3434
```
3535

36-
The following patterns are not warnings:
36+
The following patterns are **not** warnings:
3737

3838
```jsx
3939
<Hello name={firstname} />;
@@ -57,7 +57,7 @@ When `{"when": "never", "children": true}` is set, the following patterns are co
5757
<Hello>{ firstname }</Hello>;
5858
```
5959

60-
The following patterns are not warnings:
60+
The following patterns are **not** warnings:
6161

6262
```jsx
6363
<Hello name={firstname} />;
@@ -81,7 +81,7 @@ When `{"when": "always"}` is set, the following patterns are considered warnings
8181
<Hello name={firstname } />;
8282
```
8383

84-
The following patterns are not warnings:
84+
The following patterns are **not** warnings:
8585

8686
```jsx
8787
<Hello name={ firstname } />;
@@ -105,7 +105,7 @@ When `{"when": "always", "children": true}` is set, the following patterns are c
105105
<Hello>{firstname}</Hello>;
106106
```
107107

108-
The following patterns are not warnings:
108+
The following patterns are **not** warnings:
109109

110110
```jsx
111111
<Hello name={ firstname } />;
@@ -138,7 +138,7 @@ When `"never"` is used and `allowMultiline` is `false`, the following patterns a
138138
} />;
139139
```
140140

141-
The following patterns are not warnings:
141+
The following patterns are **not** warnings:
142142

143143
```jsx
144144
<Hello name={firstname} />;
@@ -161,7 +161,7 @@ When `"always"` is used and `allowMultiline` is `false`, the following patterns
161161
} />;
162162
```
163163

164-
The following patterns are not warnings:
164+
The following patterns are **not** warnings:
165165

166166
```jsx
167167
<Hello name={ firstname } />;
@@ -183,7 +183,7 @@ When `{"when": "never", "attributes": {"allowMultiline": false}, "children": tru
183183
<Hello>{ firstname }</Hello>;
184184
```
185185

186-
The following patterns are not warnings:
186+
The following patterns are **not** warnings:
187187

188188
```jsx
189189
<Hello name={firstname} />;
@@ -207,13 +207,13 @@ You can specify an additional `spacing` property that is an object with the foll
207207

208208
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.
209209

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:
211211

212212
```jsx
213213
<App blah={ 3 } foo={{ bar: true, baz: true }} />;
214214
```
215215

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:
217217

218218
```jsx
219219
<App blah={3} foo={ {bar: true, baz: true} } />;

docs/rules/jsx-equals-spacing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ When `"never"` is set, the following patterns are considered warnings:
3131
<Hello name= {firstname} />;
3232
```
3333

34-
The following patterns are not warnings:
34+
The following patterns are **not** warnings:
3535

3636
```jsx
3737
<Hello name={firstname} />;
@@ -49,7 +49,7 @@ When `"always"` is used, the following patterns are considered warnings:
4949
<Hello name= {firstname} />;
5050
```
5151

52-
The following patterns are not warnings:
52+
The following patterns are **not** warnings:
5353

5454
```jsx
5555
<Hello name = {firstname} />;

docs/rules/jsx-filename-extension.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function MyComponent() {
1111
}
1212
```
1313

14-
The following pattern is not considered a warning:
14+
The following pattern is **not** considered a warning:
1515

1616
```jsx
1717
// filename: MyComponent.jsx

docs/rules/jsx-first-prop-new-line.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The following patterns are considered warnings when configured `"always"`:
2323
/>
2424
```
2525

26-
The following patterns are not considered warnings when configured `"always"`:
26+
The following patterns are **not** considered warnings when configured `"always"`:
2727

2828
```jsx
2929
<Hello
@@ -45,7 +45,7 @@ The following patterns are considered warnings when configured `"never"`:
4545
/>
4646
```
4747

48-
The following patterns are not considered warnings when configured `"never"`:
48+
The following patterns are **not** considered warnings when configured `"never"`:
4949

5050
```jsx
5151
<Hello personal={true} />
@@ -67,7 +67,7 @@ The following patterns are considered warnings when configured `"multiline"`:
6767
}} />
6868
```
6969

70-
The following patterns are not considered warnings when configured `"multiline"`:
70+
The following patterns are **not** considered warnings when configured `"multiline"`:
7171

7272
```jsx
7373
<Hello personal={true} />
@@ -86,7 +86,7 @@ The following patterns are considered warnings when configured `"multiline-multi
8686
bar />
8787
```
8888

89-
The following patterns are not considered warnings when configured `"multiline-multiprop"`:
89+
The following patterns are **not** considered warnings when configured `"multiline-multiprop"`:
9090

9191
```jsx
9292
<Hello foo={{

docs/rules/jsx-handler-names.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following patterns are considered warnings:
1414
<MyComponent onChange={this.componentChanged} />
1515
```
1616

17-
The following patterns are not considered warnings:
17+
The following patterns are **not** considered warnings:
1818

1919
```jsx
2020
<MyComponent onChange={this.handleChange} />

docs/rules/jsx-indent-props.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The following patterns are considered warnings:
5353
/>
5454
```
5555

56-
The following patterns are not warnings:
56+
The following patterns are **not** warnings:
5757

5858
```jsx
5959

docs/rules/jsx-indent.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This option validates a specific indentation style for JSX.
44

5-
**Fixable:** This rule is automatically fixable using the `--fix` flag on the command line.
5+
**Fixable:** This rule is automatically fixable using the `--fix` flag on the command line.
66
Fixer will fix whitespace and tabs indentation.
77

88
## Rule Details
@@ -54,7 +54,7 @@ The following patterns are considered warnings:
5454
</App>
5555
```
5656

57-
The following patterns are not warnings:
57+
The following patterns are **not** warnings:
5858

5959
```jsx
6060

docs/rules/jsx-key.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following patterns are considered warnings:
1313
data.map(x => <Hello>x</Hello>);
1414
```
1515

16-
The following patterns are not considered warnings:
16+
The following patterns are **not** considered warnings:
1717

1818
```jsx
1919
[<Hello key="first" />, <Hello key="second" />, <Hello key="third" />];
@@ -25,6 +25,6 @@ data.map((x, i) => <Hello key={i}>x</Hello>);
2525

2626
If you are not using JSX then you can disable this rule.
2727

28-
Also, if you have some prevalent situation where you use arrow functions to
29-
return JSX that will not be held in an iterable, you may want to disable this
28+
Also, if you have some prevalent situation where you use arrow functions to
29+
return JSX that will not be held in an iterable, you may want to disable this
3030
rule.

docs/rules/jsx-max-props-per-line.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The following patterns are considered warnings:
1818
}} baz />;
1919
```
2020

21-
The following patterns are not considered warnings:
21+
The following patterns are **not** considered warnings:
2222

2323
```jsx
2424
<Hello
@@ -52,7 +52,7 @@ The following patterns are considered warnings:
5252
<Hello firstName="John" lastName="Smith" tel={5555555} />;
5353
```
5454

55-
The following patterns are not considered warnings:
55+
The following patterns are **not** considered warnings:
5656

5757
```jsx
5858
// [1, { "maximum": 2 }]
@@ -74,7 +74,7 @@ The following patterns are considered warnings:
7474
<Hello firstName="John" lastName="Smith" />
7575
```
7676

77-
The following patterns are not considered warnings:
77+
The following patterns are **not** considered warnings:
7878
```jsx
7979
// [1, { "when": "multiline" }]
8080
<Hello firstName="John" lastName="Smith" />

docs/rules/jsx-no-bind.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following patterns are considered warnings:
1313
<div onClick={() => console.log('Hello!')}></div>
1414
```
1515

16-
The following patterns are not considered warnings:
16+
The following patterns are **not** considered warnings:
1717
```jsx
1818
<div onClick={this._handleClick}></div>
1919
```
@@ -30,7 +30,7 @@ The following patterns are not considered warnings:
3030

3131
### `ignoreRefs`
3232

33-
When `true` the following are not considered warnings:
33+
When `true` the following are **not** considered warnings:
3434

3535
```jsx
3636
<div ref={c => this._div = c} />
@@ -39,15 +39,15 @@ When `true` the following are not considered warnings:
3939

4040
### `allowArrowFunctions`
4141

42-
When `true` the following is not considered a warning:
42+
When `true` the following is **not** considered a warning:
4343

4444
```jsx
4545
<div onClick={() => alert("1337")} />
4646
```
4747

4848
### `allowBind`
4949

50-
When `true` the following is not considered a warning:
50+
When `true` the following is **not** considered a warning:
5151

5252
```jsx
5353
<div onClick={this._handleClick.bind(this)} />

docs/rules/jsx-no-comment-textnodes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var Hello = createReactClass({
2727
});
2828
```
2929

30-
The following patterns are not considered warnings:
30+
The following patterns are **not** considered warnings:
3131

3232
```jsx
3333
var Hello = createReactClass({

0 commit comments

Comments
 (0)