Skip to content

Commit

Permalink
[Docs]: indent rules are no longer needed with newer eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
golopot committed Oct 13, 2019
1 parent 0c1cb28 commit ea6b8c8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/rules/jsx-indent-props.md
Expand Up @@ -105,3 +105,5 @@ firstName="John"
## When not to use

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

If you have enabled the core rule `indent` with eslint >= 4, you don't need this rule.
2 changes: 2 additions & 0 deletions docs/rules/jsx-indent.md
Expand Up @@ -111,3 +111,5 @@ The following patterns are **not** warnings:
## When not to use
If you are not using JSX then you can disable this rule.
If you have enabled the core rule `indent` with eslint >= 3, you don't need this rule.
2 changes: 2 additions & 0 deletions docs/rules/jsx-props-no-multi-spaces.md
Expand Up @@ -29,3 +29,5 @@ The following patterns are **not** considered warnings:
## When Not To Use It

If you are not using JSX or don't care about the space between two props in the same line.

If you have enabled the core rule `no-multi-spaces` with eslint >= 3, you don't need this rule.

0 comments on commit ea6b8c8

Please sign in to comment.