@@ -44,10 +44,10 @@ Finally, enable all of the rules that you would like to use.
44
44
"rules" : {
45
45
"react/display-name" : 1 ,
46
46
"react/jsx-boolean-value" : 1 ,
47
- "react/jsx-quotes" : 1 ,
48
47
"react/jsx-no-undef" : 1 ,
49
- "react/jsx-sort-props " : 1 ,
48
+ "react/jsx-quotes " : 1 ,
50
49
"react/jsx-sort-prop-types" : 1 ,
50
+ "react/jsx-sort-props" : 1 ,
51
51
"react/jsx-uses-react" : 1 ,
52
52
"react/jsx-uses-vars" : 1 ,
53
53
"react/no-did-mount-set-state" : 1 ,
@@ -67,10 +67,10 @@ Finally, enable all of the rules that you would like to use.
67
67
68
68
* [ display-name] ( docs/rules/display-name.md ) : Prevent missing displayName in a React component definition
69
69
* [ jsx-boolean-value] ( docs/rules/jsx-boolean-value.md ) : Enforce boolean attributes notation in JSX
70
- * [ jsx-quotes] ( docs/rules/jsx-quotes.md ) : Enforce quote style for JSX attributes
71
70
* [ jsx-no-undef] ( docs/rules/jsx-no-undef.md ) : Disallow undeclared variables in JSX
72
- * [ jsx-sort-props ] ( docs/rules/jsx-sort-props .md ) : Enforce props alphabetical sorting
71
+ * [ jsx-quotes ] ( docs/rules/jsx-quotes .md ) : Enforce quote style for JSX attributes
73
72
* [ jsx-sort-prop-types] ( docs/rules/jsx-sort-prop-types.md ) : Enforce propTypes declarations alphabetical sorting
73
+ * [ jsx-sort-props] ( docs/rules/jsx-sort-props.md ) : Enforce props alphabetical sorting
74
74
* [ jsx-uses-react] ( docs/rules/jsx-uses-react.md ) : Prevent React to be incorrectly marked as unused
75
75
* [ jsx-uses-vars] ( docs/rules/jsx-uses-vars.md ) : Prevent variables used in JSX to be incorrectly marked as unused
76
76
* [ no-did-mount-set-state] ( docs/rules/no-did-mount-set-state.md ) : Prevent usage of setState in componentDidMount
0 commit comments