Skip to content

Commit 3d0e01e

Browse files
github-actions[bot]github-actionsGudahtt
authored
11.0.1 (#260)
* 11.0.1 * Update changelog * Update READMEs with new package versions Co-authored-by: github-actions <[email protected]> Co-authored-by: Mark Stacey <[email protected]>
1 parent e48fb25 commit 3d0e01e

File tree

11 files changed

+24
-12
lines changed

11 files changed

+24
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"private": true,
55
"repository": {
66
"type": "git",

packages/base/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [11.0.1]
10+
### Fixed
11+
- Enable function expressions again ([#258](https://github.com/MetaMask/eslint-config/pull/258))
12+
- We didn't realize this rule would disallow class methods, even class constructors. This was too disruptive.
13+
914
## [11.0.0]
1015
### Added
1116
- **BREAKING:** Enable id-denylist and id-length in base config ([#200](https://github.com/MetaMask/eslint-config/pull/200))
@@ -147,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
147152
### Added
148153
- Add base, TypeScript, and Jest configs (#3)
149154

150-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...HEAD
155+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.1...HEAD
156+
[11.0.1]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.1
151157
[11.0.0]: https://github.com/MetaMask/eslint-config/compare/v10.0.0...v11.0.0
152158
[10.0.0]: https://github.com/MetaMask/eslint-config/compare/v9.0.0...v10.0.0
153159
[9.0.0]: https://github.com/MetaMask/eslint-config/compare/v8.0.0...v9.0.0

packages/base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Our default export contains a base set of ESLint rules for ES6+:
88

99
```bash
1010
yarn add --dev \
11-
@metamask/eslint-config@^11.0.0 \
11+
@metamask/eslint-config@^11.0.1 \
1212
eslint@^8.27.0 \
1313
eslint-config-prettier@^8.5.0 \
1414
eslint-plugin-import@^2.26.0 \

packages/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eslint-config",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Shareable MetaMask ESLint config.",
55
"homepage": "https://github.com/MetaMask/eslint-config#readme",
66
"bugs": {

packages/browser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Our default export contains a base set of ESLint rules for ES6+:
88

99
```bash
1010
yarn add --dev \
11-
@metamask/eslint-config@^11.0.0 \
11+
@metamask/eslint-config@^11.0.1 \
1212
@metamask/eslint-config-browser@^11.0.0 \
1313
eslint@^8.27.0 \
1414
eslint-config-prettier@^8.5.0 \

packages/jest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MetaMask's [Jest](https://jestjs.io/) ESLint configuration.
66

77
```bash
88
yarn add --dev \
9-
@metamask/eslint-config@^11.0.0 \
9+
@metamask/eslint-config@^11.0.1 \
1010
@metamask/eslint-config-jest@^11.0.0 \
1111
eslint@^8.27.0 \
1212
eslint-config-prettier@^8.5.0 \

packages/mocha/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MetaMask's [Mocha](https://mochajs.org/) ESLint configuration.
66

77
```bash
88
yarn add --dev \
9-
@metamask/eslint-config@^11.0.0 \
9+
@metamask/eslint-config@^11.0.1 \
1010
@metamask/eslint-config-mocha@^11.0.0 \
1111
eslint@^8.27.0 \
1212
eslint-config-prettier@^8.5.0 \

packages/nodejs/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [11.0.1]
10+
### Fixed
11+
- Disable import/no-nodejs-modules in Node.js config ([#257](https://github.com/MetaMask/eslint-config/pull/257))
12+
- This rule was added to the base config, but we accidentally forgot to disable it here.
13+
914
## [11.0.0]
1015
### Changed
1116
- **BREAKING:** Remove no-undef in favour of custom environments configuration ([#254](https://github.com/MetaMask/eslint-config/pull/254))
@@ -57,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5762
- To continue extending this config, install this package and update your `.eslintrc.js` `extends` array to include `@metamask/eslint-config-nodejs` instead of `@metamask/eslint-config/nodejs`.
5863
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))
5964

60-
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...HEAD
65+
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.1...HEAD
66+
[11.0.1]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.1
6167
[11.0.0]: https://github.com/MetaMask/eslint-config/compare/v10.0.0...v11.0.0
6268
[10.0.0]: https://github.com/MetaMask/eslint-config/compare/v9.0.0...v10.0.0
6369
[9.0.0]: https://github.com/MetaMask/eslint-config/compare/v8.0.0...v9.0.0

packages/nodejs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ MetaMask's [Node.js](https://nodejs.org) ESLint configuration.
66

77
```bash
88
yarn add --dev \
9-
@metamask/eslint-config@^11.0.0 \
10-
@metamask/eslint-config-nodejs@^11.0.0 \
9+
@metamask/eslint-config@^11.0.1 \
10+
@metamask/eslint-config-nodejs@^11.0.1 \
1111
eslint@^8.27.0 \
1212
eslint-config-prettier@^8.5.0 \
1313
eslint-plugin-import@^2.26.0 \

packages/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/eslint-config-nodejs",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Shareable MetaMask ESLint config for Node.js.",
55
"homepage": "https://github.com/MetaMask/eslint-config#readme",
66
"bugs": {

0 commit comments

Comments
 (0)