@@ -14,7 +14,7 @@ module.exports = {
14
14
// View link below for react rules documentation
15
15
// https://github.com/yannickcr/eslint-plugin-react#list-of-supported-rules
16
16
rules : {
17
- // specify whether double or single quotes should be used in JSX attributes
17
+ // Specify whether double or single quotes should be used in JSX attributes
18
18
// http://eslint.org/docs/rules/jsx-quotes
19
19
'jsx-quotes' : [ 2 , 'prefer-double' ] ,
20
20
@@ -91,7 +91,7 @@ module.exports = {
91
91
callbacksLast : false ,
92
92
} ] ,
93
93
94
- // deprecated in favor of react/jsx-sort-props
94
+ // Deprecated in favor of react/jsx-sort-props
95
95
'react/jsx-sort-prop-types' : 0 ,
96
96
97
97
// Enforce props alphabetical sorting
@@ -207,15 +207,15 @@ module.exports = {
207
207
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-first-prop-new-line.md
208
208
'react/jsx-first-prop-new-line' : [ 2 , 'multiline' ] ,
209
209
210
- // enforce spacing around jsx equals signs
210
+ // Enforce spacing around jsx equals signs
211
211
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-equals-spacing.md
212
212
'react/jsx-equals-spacing' : [ 2 , 'never' ] ,
213
213
214
- // enforce JSX indentation
214
+ // Enforce JSX indentation
215
215
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-indent.md
216
216
'react/jsx-indent' : [ 2 , 2 ] ,
217
217
218
- // disallow target="_blank" on links
218
+ // Disallow target="_blank" on links
219
219
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-no-target-blank.md
220
220
// TODO: enable
221
221
'react/jsx-no-target-blank' : 0
0 commit comments