diff --git a/CHANGELOG.md b/CHANGELOG.md index 28d22a4..e577619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ This changelog is only to log changes of the project base. If there are changes on the packages, please, check and update the changelog of each package accordingly. --> +## 1.9.4 + +- Fixed configuration for `eslint-config-adidas-babel`. + ## 1.9.3 - Fixed semver of required patch versions. diff --git a/package-lock.json b/package-lock.json index 3ff75e9..a406e67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "js-linter-configs", - "version": "1.9.3", + "version": "1.9.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d48eade..ddf29bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "js-linter-configs", - "version": "1.9.3", + "version": "1.9.4", "description": "adidas configurations for JavaScript linting tools", "license": "MIT", "contributors": [ diff --git a/packages/eslint-config-adidas-babel/CHANGELOG.md b/packages/eslint-config-adidas-babel/CHANGELOG.md index e3c4a68..d3085f7 100644 --- a/packages/eslint-config-adidas-babel/CHANGELOG.md +++ b/packages/eslint-config-adidas-babel/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.1 + +- Fixed `parserOptions` to not require config file on packages from `node_modules`. [babel/babel#11975](https://github.com/babel/babel/issues/11975) + # 1.3.0 - Updated ESLint to version 7. diff --git a/packages/eslint-config-adidas-babel/index.js b/packages/eslint-config-adidas-babel/index.js index 0987cde..4af9c0e 100644 --- a/packages/eslint-config-adidas-babel/index.js +++ b/packages/eslint-config-adidas-babel/index.js @@ -1,6 +1,7 @@ module.exports = { parser: '@babel/eslint-parser', parserOptions: { + requireConfigFile: false, allowImportExportEverywhere: false, ecmaFeatures: { experimentalObjectRestSpread: true, diff --git a/packages/eslint-config-adidas-babel/package.json b/packages/eslint-config-adidas-babel/package.json index 17b0012..a7adf5b 100644 --- a/packages/eslint-config-adidas-babel/package.json +++ b/packages/eslint-config-adidas-babel/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-adidas-babel", - "version": "1.3.0", + "version": "1.3.1", "description": "ESLint configuration to use @babel/eslint-parser", "license": "MIT", "contributors": [