jsx-no-duplicate-props ignore case fix (#7230)

Co-Authored-By: Ian Schmitz <ianschmitz@gmail.com>
This commit is contained in:
Guy Romm
2019-07-16 17:56:28 +03:00
committed by Ian Schmitz
parent 3495286f8f
commit 2d57fa3fb7

View File

@@ -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': [