Skip to content

Commit

Permalink
fix(jsx): remove unreleased rules
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinspecker committed May 27, 2017
1 parent cf90311 commit e5cc57d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/jsx.js
Expand Up @@ -44,7 +44,6 @@ config.rules['react/jsx-uses-vars'] = 2
config.rules['react/jsx-wrap-multilines'] = 2
config.rules['react/no-array-index-key'] = 2
config.rules['react/no-children-prop'] = 2
config.rules['react/no-comment-textnodes'] = 2
config.rules['react/no-danger'] = 2
config.rules['react/no-danger-with-children'] = 2
config.rules['react/no-deprecated'] = 2
Expand All @@ -65,15 +64,13 @@ config.rules['react/prefer-es6-class'] = [2, 'never']
config.rules['react/prefer-stateless-function'] = 2
config.rules['react/prop-types'] = 2
config.rules['react/react-in-jsx-scope'] = 2
config.rules['react/require-extension'] = [2, {extensions: ['.js', '.jsx']}]
config.rules['react/require-default-props'] = 2
config.rules['react/require-render-return'] = 2
config.rules['react/require-optimization'] = 2
config.rules['react/self-closing-comp'] = 2
config.rules['react/sort-comp'] = 2
config.rules['react/sort-prop-types'] = 2
config.rules['react/style-prop-object'] = 2
config.rules['react/wrap-multilines'] = [2, {assignment: false, declaration: false, return: false}]
config.rules['react/void-dom-elements-no-children'] = 2

module.exports = config

0 comments on commit e5cc57d

Please sign in to comment.