Skip to content

Commit

Permalink
fix: do not need to specify syntax now
Browse files Browse the repository at this point in the history
  • Loading branch information
chambo-e committed Mar 2, 2021
1 parent 4729ce2 commit 445984f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = {
extends: ['airbnb', 'airbnb/hooks', 'prettier', 'prettier/react'],
parser: '@babel/eslint-parser',
extends: ['airbnb', 'airbnb/hooks', 'prettier'],
env: {
browser: true,
jest: true,
Expand Down Expand Up @@ -36,6 +35,6 @@ module.exports = {
'react/jsx-no-script-url': 'error',
'react/jsx-no-useless-fragment': 'error',
'react/no-adjacent-inline-elements': 'error',
'react/jsx-no-constructed-context-values': 'warn'
'react/jsx-no-constructed-context-values': 'warn',
},
}

0 comments on commit 445984f

Please sign in to comment.