diff --git a/README.md b/README.md index 638c1342c9..907d862fcd 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ Finally, enable all of the rules that you would like to use. "rules": { "react/display-name": 1, "react/jsx-boolean-value": 1, - "react/jsx-quotes": 1, "react/jsx-no-undef": 1, - "react/jsx-sort-props": 1, + "react/jsx-quotes": 1, "react/jsx-sort-prop-types": 1, + "react/jsx-sort-props": 1, "react/jsx-uses-react": 1, "react/jsx-uses-vars": 1, "react/no-did-mount-set-state": 1, @@ -67,10 +67,10 @@ Finally, enable all of the rules that you would like to use. * [display-name](docs/rules/display-name.md): Prevent missing displayName in a React component definition * [jsx-boolean-value](docs/rules/jsx-boolean-value.md): Enforce boolean attributes notation in JSX -* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes * [jsx-no-undef](docs/rules/jsx-no-undef.md): Disallow undeclared variables in JSX -* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting +* [jsx-quotes](docs/rules/jsx-quotes.md): Enforce quote style for JSX attributes * [jsx-sort-prop-types](docs/rules/jsx-sort-prop-types.md): Enforce propTypes declarations alphabetical sorting +* [jsx-sort-props](docs/rules/jsx-sort-props.md): Enforce props alphabetical sorting * [jsx-uses-react](docs/rules/jsx-uses-react.md): Prevent React to be incorrectly marked as unused * [jsx-uses-vars](docs/rules/jsx-uses-vars.md): Prevent variables used in JSX to be incorrectly marked as unused * [no-did-mount-set-state](docs/rules/no-did-mount-set-state.md): Prevent usage of setState in componentDidMount