this._div = c} />
@@ -39,7 +39,7 @@ When `true` the following are not considered warnings:
### `allowArrowFunctions`
-When `true` the following is not considered a warning:
+When `true` the following is **not** considered a warning:
```jsx
alert("1337")} />
@@ -47,7 +47,7 @@ When `true` the following is not considered a warning:
### `allowBind`
-When `true` the following is not considered a warning:
+When `true` the following is **not** considered a warning:
```jsx
diff --git a/docs/rules/jsx-no-comment-textnodes.md b/docs/rules/jsx-no-comment-textnodes.md
index 24b19f90da..de940b72b7 100644
--- a/docs/rules/jsx-no-comment-textnodes.md
+++ b/docs/rules/jsx-no-comment-textnodes.md
@@ -27,7 +27,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/jsx-no-duplicate-props.md b/docs/rules/jsx-no-duplicate-props.md
index cb0d1c8fe0..fb31a1a116 100644
--- a/docs/rules/jsx-no-duplicate-props.md
+++ b/docs/rules/jsx-no-duplicate-props.md
@@ -10,7 +10,7 @@ The following patterns are considered warnings:
;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
;
diff --git a/docs/rules/jsx-no-literals.md b/docs/rules/jsx-no-literals.md
index a42e271d9f..5478aaa097 100644
--- a/docs/rules/jsx-no-literals.md
+++ b/docs/rules/jsx-no-literals.md
@@ -13,7 +13,7 @@ The following patterns are considered warnings:
var Hello =
test
;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello =
{'test'}
;
@@ -41,7 +41,7 @@ var Hello =
test
;
var Hello =
{'test'}
;
```
-The following are not considered warnings:
+The following are **not** considered warnings:
```jsx
// When using something like `react-intl`
diff --git a/docs/rules/jsx-no-target-blank.md b/docs/rules/jsx-no-target-blank.md
index ef30c808ea..ae92669f39 100644
--- a/docs/rules/jsx-no-target-blank.md
+++ b/docs/rules/jsx-no-target-blank.md
@@ -14,7 +14,7 @@ The following patterns are considered errors:
var Hello =
```
-The following patterns are not considered errors:
+The following patterns are **not** considered errors:
```jsx
var Hello =
diff --git a/docs/rules/jsx-no-undef.md b/docs/rules/jsx-no-undef.md
index 9e244d8cb8..1710039a1c 100644
--- a/docs/rules/jsx-no-undef.md
+++ b/docs/rules/jsx-no-undef.md
@@ -21,7 +21,7 @@ module.exports = Hello;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = require('./Hello');
@@ -41,7 +41,7 @@ var Hello = require('./Hello');
When `true` the rule will consider the global scope when checking for defined Components.
-The following patterns are considered okay and do not cause warnings:
+The following patterns are considered okay and do **not** cause warnings:
```jsx
var Text = require('./Text');
diff --git a/docs/rules/jsx-pascal-case.md b/docs/rules/jsx-pascal-case.md
index 5a3456d813..00af2eb013 100644
--- a/docs/rules/jsx-pascal-case.md
+++ b/docs/rules/jsx-pascal-case.md
@@ -16,7 +16,7 @@ The following patterns are considered warnings:
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
diff --git a/docs/rules/jsx-sort-props.md b/docs/rules/jsx-sort-props.md
index 5b770514bb..9c2e2623ec 100644
--- a/docs/rules/jsx-sort-props.md
+++ b/docs/rules/jsx-sort-props.md
@@ -14,7 +14,7 @@ The following patterns are considered warnings:
;
```
-The following patterns are considered okay and do not cause warnings:
+The following patterns are considered okay and do **not** cause warnings:
```jsx
;
@@ -72,7 +72,7 @@ When `true`, short hand props must be listed after all other props (unless `call
### `noSortAlphabetically`
-When `true`, alphabetical order is not enforced:
+When `true`, alphabetical order is **not** enforced:
```jsx
@@ -92,7 +92,7 @@ When `reservedFirst` is defined, React reserved props (`children`, `dangerouslyS
If given as an array, the array's values will override the default list of reserved props. **Note**: the values in the array may only be a **subset** of React reserved props.
-With `reservedFirst: [2, ["key"]]`, the following will not warn:
+With `reservedFirst: [2, ["key"]]`, the following will **not** warn:
```jsx
diff --git a/docs/rules/jsx-space-before-closing.md b/docs/rules/jsx-space-before-closing.md
index a888b7c0fe..b267952f20 100644
--- a/docs/rules/jsx-space-before-closing.md
+++ b/docs/rules/jsx-space-before-closing.md
@@ -19,7 +19,7 @@ The following patterns are considered warnings when configured `"always"`:
```
-The following patterns are not considered warnings when configured `"always"`:
+The following patterns are **not** considered warnings when configured `"always"`:
```jsx
@@ -37,7 +37,7 @@ The following patterns are considered warnings when configured `"never"`:
```
-The following patterns are not considered warnings when configured `"never"`:
+The following patterns are **not** considered warnings when configured `"never"`:
```jsx
diff --git a/docs/rules/jsx-tag-spacing.md b/docs/rules/jsx-tag-spacing.md
index 75ed07ee13..10ae717626 100644
--- a/docs/rules/jsx-tag-spacing.md
+++ b/docs/rules/jsx-tag-spacing.md
@@ -37,7 +37,7 @@ The following patterns are considered warnings when configured `"never"`:
< /Provider>
```
-The following patterns are not considered warnings when configured `"never"`:
+The following patterns are **not** considered warnings when configured `"never"`:
```jsx
@@ -52,7 +52,7 @@ The following patterns are considered warnings when configured `"always"`:
```
-The following patterns are not considered warnings when configured `"always"`:
+The following patterns are **not** considered warnings when configured `"always"`:
```jsx
@@ -72,7 +72,7 @@ The following patterns are considered warnings when configured `"always"`:
```
-The following patterns are not considered warnings when configured `"always"`:
+The following patterns are **not** considered warnings when configured `"always"`:
```jsx
@@ -90,7 +90,7 @@ The following patterns are considered warnings when configured `"never"`:
```
-The following patterns are not considered warnings when configured `"never"`:
+The following patterns are **not** considered warnings when configured `"never"`:
```jsx
@@ -118,7 +118,7 @@ The following patterns are considered warnings when configured `"always"`:
/>
```
-The following patterns are not considered warnings when configured `"always"`:
+The following patterns are **not** considered warnings when configured `"always"`:
```jsx
< Hello> Hello>
@@ -142,7 +142,7 @@ The following patterns are considered warnings when configured `"never"`:
/>
```
-The following patterns are not considered warnings when configured `"never"`:
+The following patterns are **not** considered warnings when configured `"never"`:
```jsx
@@ -164,7 +164,7 @@ The following patterns are considered warnings when configured `"allow-multiline
/>
```
-The following patterns are not considered warnings when configured `"allow-multiline"`:
+The following patterns are **not** considered warnings when configured `"allow-multiline"`:
```jsx
diff --git a/docs/rules/jsx-uses-react.md b/docs/rules/jsx-uses-react.md
index b1c45fab75..205cb4251c 100644
--- a/docs/rules/jsx-uses-react.md
+++ b/docs/rules/jsx-uses-react.md
@@ -26,7 +26,7 @@ var React = require('react');
var Hello = Hello {this.props.name}
;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var React = require('react');
diff --git a/docs/rules/jsx-uses-vars.md b/docs/rules/jsx-uses-vars.md
index fd20e1dfb0..dc58fe2eb1 100644
--- a/docs/rules/jsx-uses-vars.md
+++ b/docs/rules/jsx-uses-vars.md
@@ -12,7 +12,7 @@ The following patterns are considered warnings:
var Hello = require('./Hello');
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = require('./Hello');
diff --git a/docs/rules/jsx-wrap-multilines.md b/docs/rules/jsx-wrap-multilines.md
index d80bf70d04..b2c90f9783 100644
--- a/docs/rules/jsx-wrap-multilines.md
+++ b/docs/rules/jsx-wrap-multilines.md
@@ -27,7 +27,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var singleLineJSX = Hello
@@ -51,7 +51,7 @@ var hello =
;
```
-The following patterns are not considered warnings when configured `{declaration: true}`.
+The following patterns are **not** considered warnings when configured `{declaration: true}`.
```jsx
var hello = (
@@ -70,7 +70,7 @@ hello =
;
```
-The following patterns are not considered warnings when configured `{assignment: true}`.
+The following patterns are **not** considered warnings when configured `{assignment: true}`.
```jsx
var hello;
@@ -90,7 +90,7 @@ function hello() {
}
```
-The following patterns are not considered warnings when configured `{return: true}`.
+The following patterns are **not** considered warnings when configured `{return: true}`.
```jsx
function hello() {
@@ -109,7 +109,7 @@ var hello = () =>
;
```
-The following patterns are not considered warnings when configured `{arrow: true}`.
+The following patterns are **not** considered warnings when configured `{arrow: true}`.
```jsx
var hello = () => (
diff --git a/docs/rules/no-array-index-key.md b/docs/rules/no-array-index-key.md
index 81e5fe886c..0b8e6337e3 100644
--- a/docs/rules/no-array-index-key.md
+++ b/docs/rules/no-array-index-key.md
@@ -52,7 +52,7 @@ things.reduceRight((collection, thing, index) => (
), []);
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
things.map((thing) => (
diff --git a/docs/rules/no-children-prop.md b/docs/rules/no-children-prop.md
index dc26f027ae..b3a5b4b705 100644
--- a/docs/rules/no-children-prop.md
+++ b/docs/rules/no-children-prop.md
@@ -19,7 +19,7 @@ The following patterns are considered warnings:
React.createElement("div", { children: 'Children' })
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
Children
diff --git a/docs/rules/no-danger-with-children.md b/docs/rules/no-danger-with-children.md
index 673ab5afe7..f1b86ec861 100644
--- a/docs/rules/no-danger-with-children.md
+++ b/docs/rules/no-danger-with-children.md
@@ -24,7 +24,7 @@ React.createElement("div", { dangerouslySetInnerHTML: { __html: "HTML" } }, "Chi
React.createElement("Hello", { dangerouslySetInnerHTML: { __html: "HTML" } }, "Children");
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
diff --git a/docs/rules/no-danger.md b/docs/rules/no-danger.md
index b1dfe3b484..31512e8305 100644
--- a/docs/rules/no-danger.md
+++ b/docs/rules/no-danger.md
@@ -14,7 +14,7 @@ var React = require('react');
var Hello = ;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var React = require('react');
diff --git a/docs/rules/no-deprecated.md b/docs/rules/no-deprecated.md
index 82b8b540db..0296f7d7a5 100644
--- a/docs/rules/no-deprecated.md
+++ b/docs/rules/no-deprecated.md
@@ -26,7 +26,7 @@ const propTypes = {
import React, { PropTypes } from 'react';
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
ReactDOM.render(, root);
diff --git a/docs/rules/no-did-mount-set-state.md b/docs/rules/no-did-mount-set-state.md
index 0cefc284b3..c3c946d88e 100644
--- a/docs/rules/no-did-mount-set-state.md
+++ b/docs/rules/no-did-mount-set-state.md
@@ -21,7 +21,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-did-update-set-state.md b/docs/rules/no-did-update-set-state.md
index 0a82442f6e..ee47941b5c 100644
--- a/docs/rules/no-did-update-set-state.md
+++ b/docs/rules/no-did-update-set-state.md
@@ -19,7 +19,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-direct-mutation-state.md b/docs/rules/no-direct-mutation-state.md
index 3a8c8bdd05..21cb4b3381 100644
--- a/docs/rules/no-direct-mutation-state.md
+++ b/docs/rules/no-direct-mutation-state.md
@@ -34,7 +34,7 @@ class Hello extends React.Component {
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-find-dom-node.md b/docs/rules/no-find-dom-node.md
index 8af82522b3..c9e343746a 100644
--- a/docs/rules/no-find-dom-node.md
+++ b/docs/rules/no-find-dom-node.md
@@ -19,7 +19,7 @@ class MyComponent extends Component {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
class MyComponent extends Component {
diff --git a/docs/rules/no-is-mounted.md b/docs/rules/no-is-mounted.md
index b2931e1d1e..2f9a841b42 100644
--- a/docs/rules/no-is-mounted.md
+++ b/docs/rules/no-is-mounted.md
@@ -23,7 +23,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-multi-comp.md b/docs/rules/no-multi-comp.md
index ac972d87ae..38b96b680b 100644
--- a/docs/rules/no-multi-comp.md
+++ b/docs/rules/no-multi-comp.md
@@ -20,7 +20,7 @@ var HelloJohn = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = require('./components/Hello');
@@ -44,7 +44,7 @@ var HelloJohn = createReactClass({
When `true` the rule will ignore stateless components and will allow you to have multiple stateless components, or one stateful component and some stateless components in the same file.
-The following patterns are considered okay and do not cause warnings:
+The following patterns are considered okay and do **not** cause warnings:
```jsx
function Hello(props) {
diff --git a/docs/rules/no-redundant-should-component-update.md b/docs/rules/no-redundant-should-component-update.md
index a57b6f7eba..ba049ea140 100644
--- a/docs/rules/no-redundant-should-component-update.md
+++ b/docs/rules/no-redundant-should-component-update.md
@@ -31,7 +31,7 @@ function Bar() {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
class Foo extends React.Component {
diff --git a/docs/rules/no-render-return-value.md b/docs/rules/no-render-return-value.md
index fc49cd38cc..dbafb0b5b1 100644
--- a/docs/rules/no-render-return-value.md
+++ b/docs/rules/no-render-return-value.md
@@ -15,7 +15,7 @@ const inst = ReactDOM.render(, document.body);
doSomethingWithInst(inst);
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
ReactDOM.render(, document.body);
diff --git a/docs/rules/no-set-state.md b/docs/rules/no-set-state.md
index 7de61e75ff..92e972e38e 100644
--- a/docs/rules/no-set-state.md
+++ b/docs/rules/no-set-state.md
@@ -24,7 +24,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-string-refs.md b/docs/rules/no-string-refs.md
index 359a5ab102..521715a40a 100644
--- a/docs/rules/no-string-refs.md
+++ b/docs/rules/no-string-refs.md
@@ -4,7 +4,7 @@ Currently, two ways are supported by React to refer to components. The first way
## Rule Details
-Invalid:
+The following patterns are considered warnings:
```jsx
var Hello = createReactClass({
@@ -26,7 +26,7 @@ var Hello = createReactClass({
});
```
-Valid:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-typos.md b/docs/rules/no-typos.md
index ed2bfec8fb..50a86c19ce 100644
--- a/docs/rules/no-typos.md
+++ b/docs/rules/no-typos.md
@@ -82,7 +82,7 @@ class MyComponent extends React.Component {
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```js
class MyComponent extends React.Component {
diff --git a/docs/rules/no-unescaped-entities.md b/docs/rules/no-unescaped-entities.md
index a22339b2f3..b561cb19af 100644
--- a/docs/rules/no-unescaped-entities.md
+++ b/docs/rules/no-unescaped-entities.md
@@ -59,7 +59,7 @@ The following patterns are considered warnings:
>
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
>
diff --git a/docs/rules/no-unknown-property.md b/docs/rules/no-unknown-property.md
index 67f5192205..578e72b0d4 100644
--- a/docs/rules/no-unknown-property.md
+++ b/docs/rules/no-unknown-property.md
@@ -14,7 +14,7 @@ var React = require('react');
var Hello = Hello World
;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var React = require('react');
diff --git a/docs/rules/no-unused-prop-types.md b/docs/rules/no-unused-prop-types.md
index 083182af88..338c99f392 100644
--- a/docs/rules/no-unused-prop-types.md
+++ b/docs/rules/no-unused-prop-types.md
@@ -28,7 +28,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/no-will-update-set-state.md b/docs/rules/no-will-update-set-state.md
index 8735ffa8ed..95bbcf36ce 100644
--- a/docs/rules/no-will-update-set-state.md
+++ b/docs/rules/no-will-update-set-state.md
@@ -19,7 +19,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/prefer-es6-class.md b/docs/rules/prefer-es6-class.md
index 3996a4a941..c044211183 100644
--- a/docs/rules/prefer-es6-class.md
+++ b/docs/rules/prefer-es6-class.md
@@ -24,7 +24,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
class Hello extends React.Component {
@@ -48,7 +48,7 @@ class Hello extends React.Component {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/prefer-stateless-function.md b/docs/rules/prefer-stateless-function.md
index f1211fdf9e..3b47f543a7 100644
--- a/docs/rules/prefer-stateless-function.md
+++ b/docs/rules/prefer-stateless-function.md
@@ -25,7 +25,7 @@ var Hello = createReactClass({
});
```
-The following pattern is not considered a warning:
+The following pattern is **not** considered a warning:
```jsx
const Foo = function(props, context) {
@@ -37,7 +37,7 @@ const Foo = function(props, context) {
};
```
-The following pattern is not considered a warning in React <15.0.0:
+The following pattern is **not** considered a warning in React <15.0.0:
```jsx
class Foo extends React.Component {
@@ -66,7 +66,7 @@ class Foo extends React.Component {
When `true` the rule will ignore Components extending from `React.PureComponent` that use `this.props` or `this.context`.
-The following pattern is considered okay and does not cause warnings:
+The following pattern is considered okay and does **not** cause warnings:
```jsx
class Foo extends React.PureComponent {
diff --git a/docs/rules/prop-types.md b/docs/rules/prop-types.md
index 05c8817fe0..627b93bb94 100644
--- a/docs/rules/prop-types.md
+++ b/docs/rules/prop-types.md
@@ -62,7 +62,7 @@ class HelloEs6WithPublicClassField extends React.Component {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/react-in-jsx-scope.md b/docs/rules/react-in-jsx-scope.md
index c6591b0301..cf7d20ed31 100644
--- a/docs/rules/react-in-jsx-scope.md
+++ b/docs/rules/react-in-jsx-scope.md
@@ -20,7 +20,7 @@ var React = require('react');
var Hello = Hello {this.props.name}
;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
import React from 'react';
diff --git a/docs/rules/require-default-props.md b/docs/rules/require-default-props.md
index ce1bf7060c..6c543ddbe5 100644
--- a/docs/rules/require-default-props.md
+++ b/docs/rules/require-default-props.md
@@ -132,7 +132,7 @@ function MyStatelessComponent(props: Props) {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
function MyStatelessComponent({ foo, bar }) {
diff --git a/docs/rules/require-optimization.md b/docs/rules/require-optimization.md
index bda590a7c3..4d26696675 100644
--- a/docs/rules/require-optimization.md
+++ b/docs/rules/require-optimization.md
@@ -17,7 +17,7 @@ createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```js
class YourComponent extends React.Component {
@@ -64,7 +64,7 @@ createReactClass({
Sets the allowed names of decorators. If the variable is present in the chain of decorators, it validates
-The following patterns are not warnings:
+The following patterns are **not** warnings:
```js
// ['pureRender']
diff --git a/docs/rules/require-render-return.md b/docs/rules/require-render-return.md
index faf127b7fc..d68028a4af 100644
--- a/docs/rules/require-render-return.md
+++ b/docs/rules/require-render-return.md
@@ -20,7 +20,7 @@ class Hello extends React.Component {
}
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
diff --git a/docs/rules/self-closing-comp.md b/docs/rules/self-closing-comp.md
index a81d54f274..989f38f98f 100644
--- a/docs/rules/self-closing-comp.md
+++ b/docs/rules/self-closing-comp.md
@@ -12,7 +12,7 @@ The following patterns are considered warnings:
var HelloJohn = ;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var contentContainer = ;
@@ -49,7 +49,7 @@ The following patterns are considered warnings:
var HelloJohn = ;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var contentContainer = ;
@@ -71,7 +71,7 @@ The following patterns are considered warnings:
var contentContainer = ;
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var contentContainer = ;
diff --git a/docs/rules/sort-comp.md b/docs/rules/sort-comp.md
index c1ec19b0bb..87612f115d 100644
--- a/docs/rules/sort-comp.md
+++ b/docs/rules/sort-comp.md
@@ -24,7 +24,7 @@ var Hello = createReactClass({
});
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
@@ -120,7 +120,7 @@ var Hello = createReactClass({
});
```
-With the above configuration, the following patterns are not considered warnings:
+With the above configuration, the following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
@@ -162,7 +162,7 @@ var Hello = createReactClass({
});
```
-With the above configuration, the following patterns are not considered warnings:
+With the above configuration, the following patterns are **not** considered warnings:
```jsx
var Hello = createReactClass({
@@ -201,7 +201,7 @@ class Hello extends React.Component {
}
```
-With the above configuration, the following patterns are not considered warnings:
+With the above configuration, the following patterns are **not** considered warnings:
```jsx
type Props = {};
diff --git a/docs/rules/sort-prop-types.md b/docs/rules/sort-prop-types.md
index d59ebc2c11..03ae6abd82 100644
--- a/docs/rules/sort-prop-types.md
+++ b/docs/rules/sort-prop-types.md
@@ -39,7 +39,7 @@ class Component extends React.Component {
}
```
-The following patterns are considered okay and do not cause warnings:
+The following patterns are considered okay and do **not** cause warnings:
```jsx
var Component = createReactClass({
diff --git a/docs/rules/style-prop-object.md b/docs/rules/style-prop-object.md
index 389afa4e46..464f889cb6 100644
--- a/docs/rules/style-prop-object.md
+++ b/docs/rules/style-prop-object.md
@@ -30,7 +30,7 @@ React.createElement("div", { style: styles });
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
diff --git a/docs/rules/void-dom-elements-no-children.md b/docs/rules/void-dom-elements-no-children.md
index 81c1e861ec..ea9322cb7d 100644
--- a/docs/rules/void-dom-elements-no-children.md
+++ b/docs/rules/void-dom-elements-no-children.md
@@ -18,7 +18,7 @@ React.createElement('br', { children: 'Children' })
React.createElement('br', { dangerouslySetInnerHTML: { __html: 'HTML' } })
```
-The following patterns are not considered warnings:
+The following patterns are **not** considered warnings:
```jsx
Children