Skip to content

Commit

Permalink
fix: allow to use config without babel config
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Apr 19, 2022
1 parent caed581 commit cc7215b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/eslint-config-react-native/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ module.exports = {
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
requireConfigFile: false,
allowImportExportEverywhere: true,
ecmaFeatures: {
jsx: true,
},
Expand Down
2 changes: 2 additions & 0 deletions packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ module.exports = {
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
requireConfigFile: false,
allowImportExportEverywhere: true,
ecmaFeatures: {
jsx: true,
},
Expand Down
1 change: 1 addition & 0 deletions packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 2021,
sourceType: 'module',
requireConfigFile: false,
},
plugins: [
'@babel',
Expand Down

0 comments on commit cc7215b

Please sign in to comment.