Skip to content

Commit

Permalink
fix(react): disable react specific rules
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed May 26, 2020
1 parent 75878ce commit e3b28aa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const OFF = 0;

module.exports = {
env: {
browser: true,
Expand All @@ -20,4 +22,8 @@ module.exports = {
version: 'detect',
},
},
rules: {
'react/display-name': OFF,
'react/no-children-prop': OFF,
},
};

0 comments on commit e3b28aa

Please sign in to comment.