Skip to content

Commit

Permalink
jsx-no-duplicate-props ignore case fix (#7230)
Browse files Browse the repository at this point in the history
Co-Authored-By: Ian Schmitz <ianschmitz@gmail.com>
  • Loading branch information
rommguy and ianschmitz committed Jul 16, 2019
1 parent 3495286 commit 2d57fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-react-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ module.exports = {
// https://github.com/yannickcr/eslint-plugin-react/tree/master/docs/rules
'react/forbid-foreign-prop-types': ['warn', { allowInPropTypes: true }],
'react/jsx-no-comment-textnodes': 'warn',
'react/jsx-no-duplicate-props': ['warn', { ignoreCase: true }],
'react/jsx-no-duplicate-props': 'warn',
'react/jsx-no-target-blank': 'warn',
'react/jsx-no-undef': 'error',
'react/jsx-pascal-case': [
Expand Down

0 comments on commit 2d57fa3

Please sign in to comment.