Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

11.0.1 #260

Merged
merged 3 commits into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "11.0.0",
"version": "11.0.1",
"private": true,
"repository": {
"type": "git",
Expand Down
8 changes: 7 additions & 1 deletion packages/base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.0.1]
### Fixed
- Enable function expressions again ([#258](https://github.com/MetaMask/eslint-config/pull/258))
- We didn't realize this rule would disallow class methods, even class constructors. This was too disruptive.

## [11.0.0]
### Added
- **BREAKING:** Enable id-denylist and id-length in base config ([#200](https://github.com/MetaMask/eslint-config/pull/200))
Expand Down Expand Up @@ -147,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Add base, TypeScript, and Jest configs (#3)

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.1...HEAD
[11.0.1]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.1
[11.0.0]: https://github.com/MetaMask/eslint-config/compare/v10.0.0...v11.0.0
[10.0.0]: https://github.com/MetaMask/eslint-config/compare/v9.0.0...v10.0.0
[9.0.0]: https://github.com/MetaMask/eslint-config/compare/v8.0.0...v9.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Our default export contains a base set of ESLint rules for ES6+:

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
eslint@^8.27.0 \
eslint-config-prettier@^8.5.0 \
eslint-plugin-import@^2.26.0 \
Expand Down
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config",
"version": "11.0.0",
"version": "11.0.1",
"description": "Shareable MetaMask ESLint config.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Our default export contains a base set of ESLint rules for ES6+:

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
@metamask/eslint-config-browser@^11.0.0 \
eslint@^8.27.0 \
eslint-config-prettier@^8.5.0 \
Expand Down
2 changes: 1 addition & 1 deletion packages/jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MetaMask's [Jest](https://jestjs.io/) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
@metamask/eslint-config-jest@^11.0.0 \
eslint@^8.27.0 \
eslint-config-prettier@^8.5.0 \
Expand Down
2 changes: 1 addition & 1 deletion packages/mocha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MetaMask's [Mocha](https://mochajs.org/) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
@metamask/eslint-config-mocha@^11.0.0 \
eslint@^8.27.0 \
eslint-config-prettier@^8.5.0 \
Expand Down
8 changes: 7 additions & 1 deletion packages/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [11.0.1]
### Fixed
- Disable import/no-nodejs-modules in Node.js config ([#257](https://github.com/MetaMask/eslint-config/pull/257))
- This rule was added to the base config, but we accidentally forgot to disable it here.

## [11.0.0]
### Changed
- **BREAKING:** Remove no-undef in favour of custom environments configuration ([#254](https://github.com/MetaMask/eslint-config/pull/254))
Expand Down Expand Up @@ -57,7 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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`.
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/v11.0.1...HEAD
[11.0.1]: https://github.com/MetaMask/eslint-config/compare/v11.0.0...v11.0.1
[11.0.0]: https://github.com/MetaMask/eslint-config/compare/v10.0.0...v11.0.0
[10.0.0]: https://github.com/MetaMask/eslint-config/compare/v9.0.0...v10.0.0
[9.0.0]: https://github.com/MetaMask/eslint-config/compare/v8.0.0...v9.0.0
Expand Down
4 changes: 2 additions & 2 deletions packages/nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ MetaMask's [Node.js](https://nodejs.org) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config-nodejs@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
@metamask/eslint-config-nodejs@^11.0.1 \
eslint@^8.27.0 \
eslint-config-prettier@^8.5.0 \
eslint-plugin-import@^2.26.0 \
Expand Down
2 changes: 1 addition & 1 deletion packages/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-nodejs",
"version": "11.0.0",
"version": "11.0.1",
"description": "Shareable MetaMask ESLint config for Node.js.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ MetaMask's [TypeScript](https://www.typescriptlang.org) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^11.0.0 \
@metamask/eslint-config@^11.0.1 \
@metamask/eslint-config-typescript@^11.0.0 \
@typescript-eslint/eslint-plugin@^5.42.1 \
@typescript-eslint/parser@^5.42.1 \
Expand Down