@@ -46,8 +46,8 @@ Finally, enable all of the rules that you would like to use.
46
46
"react/jsx-boolean-value" : 1 ,
47
47
"react/jsx-closing-bracket-location" : 1 ,
48
48
"react/jsx-curly-spacing" : 1 ,
49
- "react/jsx-max-props-per-line" : 1 ,
50
49
"react/jsx-indent-props" : 1 ,
50
+ "react/jsx-max-props-per-line" : 1 ,
51
51
"react/jsx-no-duplicate-props" : 1 ,
52
52
"react/jsx-no-undef" : 1 ,
53
53
"react/jsx-quotes" : 1 ,
@@ -56,10 +56,10 @@ Finally, enable all of the rules that you would like to use.
56
56
"react/jsx-uses-react" : 1 ,
57
57
"react/jsx-uses-vars" : 1 ,
58
58
"react/no-danger" : 1 ,
59
- "react/no-set-state" : 1 ,
60
59
"react/no-did-mount-set-state" : 1 ,
61
60
"react/no-did-update-set-state" : 1 ,
62
61
"react/no-multi-comp" : 1 ,
62
+ "react/no-set-state" : 1 ,
63
63
"react/no-unknown-property" : 1 ,
64
64
"react/prop-types" : 1 ,
65
65
"react/react-in-jsx-scope" : 1 ,
@@ -77,8 +77,8 @@ Finally, enable all of the rules that you would like to use.
77
77
* [ jsx-boolean-value] ( docs/rules/jsx-boolean-value.md ) : Enforce boolean attributes notation in JSX
78
78
* [ jsx-closing-bracket-location] ( docs/rules/jsx-closing-bracket-location.md ) : Validate closing bracket location in JSX
79
79
* [ jsx-curly-spacing] ( docs/rules/jsx-curly-spacing.md ) : Enforce or disallow spaces inside of curly braces in JSX attributes
80
- * [ jsx-max-props-per-line] ( docs/rules/jsx-max-props-per-line.md ) : Limit maximum of props on a single line in JSX
81
80
* [ jsx-indent-props] ( docs/rules/jsx-indent-props.md ) : Validate props indentation in JSX
81
+ * [ jsx-max-props-per-line] ( docs/rules/jsx-max-props-per-line.md ) : Limit maximum of props on a single line in JSX
82
82
* [ jsx-no-duplicate-props] ( docs/rules/jsx-no-duplicate-props.md ) : Prevent duplicate props in JSX
83
83
* [ jsx-no-literals] ( docs/rules/jsx-no-literals.md ) : Prevent usage of unwrapped JSX strings
84
84
* [ jsx-no-undef] ( docs/rules/jsx-no-undef.md ) : Disallow undeclared variables in JSX
@@ -88,10 +88,10 @@ Finally, enable all of the rules that you would like to use.
88
88
* [ jsx-uses-react] ( docs/rules/jsx-uses-react.md ) : Prevent React to be incorrectly marked as unused
89
89
* [ jsx-uses-vars] ( docs/rules/jsx-uses-vars.md ) : Prevent variables used in JSX to be incorrectly marked as unused
90
90
* [ no-danger] ( docs/rules/no-danger.md ) : Prevent usage of dangerous JSX properties
91
- * [ no-set-state] ( docs/rules/no-set-state.md ) : Prevent usage of setState
92
91
* [ no-did-mount-set-state] ( docs/rules/no-did-mount-set-state.md ) : Prevent usage of setState in componentDidMount
93
92
* [ no-did-update-set-state] ( docs/rules/no-did-update-set-state.md ) : Prevent usage of setState in componentDidUpdate
94
93
* [ no-multi-comp] ( docs/rules/no-multi-comp.md ) : Prevent multiple component definition per file
94
+ * [ no-set-state] ( docs/rules/no-set-state.md ) : Prevent usage of setState
95
95
* [ no-unknown-property] ( docs/rules/no-unknown-property.md ) : Prevent usage of unknown DOM property
96
96
* [ prop-types] ( docs/rules/prop-types.md ) : Prevent missing props validation in a React component definition
97
97
* [ react-in-jsx-scope] ( docs/rules/react-in-jsx-scope.md ) : Prevent missing React when using JSX
0 commit comments