Skip to content

Commit 5da397b

Browse files
committed
Add backticks around some code in readme
Backticks will cause these bits to be formatted as code, which will make this document more readable.
1 parent 91b952b commit 5da397b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Finally, enable all of the rules that you would like to use.
7777

7878
# List of supported rules
7979

80-
* [display-name](docs/rules/display-name.md): Prevent missing displayName in a React component definition
80+
* [display-name](docs/rules/display-name.md): Prevent missing `displayName` in a React component definition
8181
* [jsx-boolean-value](docs/rules/jsx-boolean-value.md): Enforce boolean attributes notation in JSX
8282
* [jsx-closing-bracket-location](docs/rules/jsx-closing-bracket-location.md): Validate closing bracket location in JSX
8383
* [jsx-curly-spacing](docs/rules/jsx-curly-spacing.md): Enforce or disallow spaces inside of curly braces in JSX attributes
@@ -92,13 +92,13 @@ Finally, enable all of the rules that you would like to use.
9292
* [jsx-uses-react](docs/rules/jsx-uses-react.md): Prevent React to be incorrectly marked as unused
9393
* [jsx-uses-vars](docs/rules/jsx-uses-vars.md): Prevent variables used in JSX to be incorrectly marked as unused
9494
* [no-danger](docs/rules/no-danger.md): Prevent usage of dangerous JSX properties
95-
* [no-did-mount-set-state](docs/rules/no-did-mount-set-state.md): Prevent usage of setState in componentDidMount
96-
* [no-did-update-set-state](docs/rules/no-did-update-set-state.md): Prevent usage of setState in componentDidUpdate
95+
* [no-did-mount-set-state](docs/rules/no-did-mount-set-state.md): Prevent usage of `setState` in `componentDidMount`
96+
* [no-did-update-set-state](docs/rules/no-did-update-set-state.md): Prevent usage of `setState` in `componentDidUpdate`
9797
* [no-multi-comp](docs/rules/no-multi-comp.md): Prevent multiple component definition per file
98-
* [no-set-state](docs/rules/no-set-state.md): Prevent usage of setState
98+
* [no-set-state](docs/rules/no-set-state.md): Prevent usage of `setState`
9999
* [no-unknown-property](docs/rules/no-unknown-property.md): Prevent usage of unknown DOM property
100100
* [prop-types](docs/rules/prop-types.md): Prevent missing props validation in a React component definition
101-
* [react-in-jsx-scope](docs/rules/react-in-jsx-scope.md): Prevent missing React when using JSX
101+
* [react-in-jsx-scope](docs/rules/react-in-jsx-scope.md): Prevent missing `React` when using JSX
102102
* [require-extension](docs/rules/require-extension.md): Restrict file extensions that may be required
103103
* [self-closing-comp](docs/rules/self-closing-comp.md): Prevent extra closing tags for components without children
104104
* [sort-comp](docs/rules/sort-comp.md): Enforce component methods order

0 commit comments

Comments
 (0)