Skip to content

Commit

Permalink
Fix a bug introduced in f2afce7 / airbnb#581
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb authored and jaylaw81 committed Sep 19, 2017
1 parent 2c4c2ae commit 9a7e6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-airbnb/rules/react.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
'rules': {
// Prevent missing displayName in a React component definition
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/display-name.md
'react/display-name': [0, {'acceptTranspilerName', false}],
'react/display-name': [0, {'acceptTranspilerName': false}],
// Forbid certain propTypes (any, array, object)
// https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/forbid-prop-types.md
'react/forbid-prop-types': [0, {'forbid': ['any', 'array', 'object']}],
Expand Down

0 comments on commit 9a7e6e3

Please sign in to comment.