Skip to content

Commit

Permalink
Release 14.0.0 (#377)
Browse files Browse the repository at this point in the history
* Initialize Release 14.0.0

* Update Release 14.0.0

* Update all changelogs

* Bump peer dependency version

* Update versions to workspace:^

* Fix typo in Vitest changelog validate script
  • Loading branch information
Mrtenz authored Oct 7, 2024
1 parent 191bc48 commit 597ecb6
Show file tree
Hide file tree
Showing 26 changed files with 202 additions and 82 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-root",
"version": "13.0.0",
"version": "14.0.0",
"private": true,
"repository": {
"type": "git",
Expand All @@ -27,8 +27,8 @@
"@lavamoat/allow-scripts": "^3.0.4",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/create-release-branch": "^4.0.0",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config-nodejs": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"@metamask/eslint-config-nodejs": "workspace:^",
"@metamask/eslint-config-typescript": "workspace:^",
"@metamask/eslint-config-vitest": "workspace:^",
"@metamask/utils": "^9.1.0",
Expand Down
23 changes: 22 additions & 1 deletion packages/base/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Bump peer dependency on `eslint-config-prettier` from `^8.5.0` to `^9.1.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Bump peer dependency on `eslint-plugin-import-x` from `^0.5.1` to `^4.3.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Bump peer dependency on `eslint-plugin-jsdoc` from `>=43.0.7 <48` to `^50.2.4` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Bump peer dependency on `eslint-plugin-prettier` from `^4.2.1` to `^5.2.1` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Bump peer dependency on `eslint-plugin-promise` from `^6.1.1` to `^7.1.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Bump peer dependency on `prettier` from `^2.7.1` to `^3.3.3` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -244,7 +264,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add base, TypeScript, and Jest configs (#3)

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.2.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
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@^13.0.0 \
@metamask/eslint-config@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.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": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint config.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down
17 changes: 16 additions & 1 deletion packages/browser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -40,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release of this package.

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions packages/browser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Our default export contains a base set of ESLint rules for ES6+:

```bash
yarn add --dev \
@metamask/eslint-config@^13.0.0 \
@metamask/eslint-config-browser@^13.0.0 \
@metamask/eslint-config@^14.0.0 \
@metamask/eslint-config-browser@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
Expand Down
4 changes: 2 additions & 2 deletions packages/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-browser",
"version": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint plugin for browser environments.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"vitest": "^2.1.1"
},
"peerDependencies": {
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0"
},
"engines": {
Expand Down
17 changes: 16 additions & 1 deletion packages/commonjs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -35,7 +49,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release of this package ([#267](https://github.com/MetaMask/eslint-config/pull/267))

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/commonjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MetaMask's ESLint configuration for projects using CommonJS.
```bash
yarn add --dev \
@metamask/eslint-config@^13.0.0 \
@metamask/eslint-config-commonjs@^13.0.0 \
@metamask/eslint-config-commonjs@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
Expand Down
4 changes: 2 additions & 2 deletions packages/commonjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-commonjs",
"version": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint config for CommonJS projects.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"vitest": "^2.1.1"
},
"peerDependencies": {
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0"
},
"engines": {
Expand Down
18 changes: 17 additions & 1 deletion packages/jest/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Bump peer dependency on `eslint-plugin-jest` from `^27.9.0` to `^28.8.3` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -92,7 +107,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-jest` instead of `@metamask/eslint-config/jest`.
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions packages/jest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ MetaMask's [Jest](https://jestjs.io/) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^13.0.0 \
@metamask/eslint-config-jest@^13.0.0 \
@metamask/eslint-config@^14.0.0 \
@metamask/eslint-config-jest@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
Expand Down
6 changes: 3 additions & 3 deletions packages/jest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-jest",
"version": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint config for Jest.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"devDependencies": {
"@jest/globals": "^29.7.0",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.3.0",
Expand All @@ -52,7 +52,7 @@
"vitest": "^2.1.1"
},
"peerDependencies": {
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-plugin-jest": "^28.8.3"
},
Expand Down
18 changes: 17 additions & 1 deletion packages/mocha/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Bump peer dependency on `eslint-plugin-mocha` from `^10.4.1` to `^10.5.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -94,7 +109,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-mocha` instead of `@metamask/eslint-config/mocha`.
- Update `eslint` and other ESLint peer dependencies ([#151](https://github.com/MetaMask/eslint-config/pull/151))

[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions packages/mocha/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ MetaMask's [Mocha](https://mochajs.org/) ESLint configuration.

```bash
yarn add --dev \
@metamask/eslint-config@^13.0.0 \
@metamask/eslint-config-mocha@^13.0.0 \
@metamask/eslint-config@^14.0.0 \
@metamask/eslint-config-mocha@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
Expand Down
6 changes: 3 additions & 3 deletions packages/mocha/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-mocha",
"version": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint config for Mocha.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"@jest/globals": "^29.7.0",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.3.0",
Expand All @@ -50,7 +50,7 @@
"vitest": "^2.1.1"
},
"peerDependencies": {
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-plugin-mocha": "^10.5.0"
},
Expand Down
18 changes: 17 additions & 1 deletion packages/nodejs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [14.0.0]

### Changed

- **BREAKING:** Bump minimum Node.js version from 16 to 18.18 ([#371](https://github.com/MetaMask/eslint-config/pull/371))
- **BREAKING:** Bump peer dependency on ESLint from `^8.57.0` to `^9.11.0` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 requires flat configs, so this change also rewrites the configs to
use flat configs. The legacy config format is no longer supported.
- **BREAKING:** Bump peer dependency on `@metamask/eslint-config` from `^13.0.0` to `^14.0.0` ([#377](https://github.com/MetaMask/eslint-config/pull/377))
- **BREAKING:** Bump peer dependency on `eslint-plugin-n` from `^16.6.2` to `^17.10.3` ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- **BREAKING:** Change package to be pure ESM ([#370](https://github.com/MetaMask/eslint-config/pull/370))
- ESLint 9 supports ESM out-of-the-box, so this change updates the package to
be pure ESM. This means that the package can no longer be used with CommonJS
`require` syntax.

## [13.0.0]

### Changed
Expand Down Expand Up @@ -108,7 +123,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/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]
[14.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[13.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.1.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
[12.0.0]: https://github.com/MetaMask/eslint-config/compare/@metamask/[email protected]...@metamask/[email protected]
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@^13.0.0 \
@metamask/eslint-config-nodejs@^12.1.0 \
@metamask/eslint-config@^14.0.0 \
@metamask/eslint-config-nodejs@^14.0.0 \
eslint@^9.11.0 \
eslint-config-prettier@^9.1.0 \
eslint-plugin-import-x@^4.3.0 \
Expand Down
6 changes: 3 additions & 3 deletions packages/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/eslint-config-nodejs",
"version": "13.0.0",
"version": "14.0.0",
"description": "Shareable MetaMask ESLint config for Node.js.",
"homepage": "https://github.com/MetaMask/eslint-config#readme",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"devDependencies": {
"@jest/globals": "^29.7.0",
"@metamask/auto-changelog": "^3.4.4",
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.3.0",
Expand All @@ -50,7 +50,7 @@
"vitest": "^2.1.1"
},
"peerDependencies": {
"@metamask/eslint-config": "^13.0.0",
"@metamask/eslint-config": "workspace:^",
"eslint": "^9.11.0",
"eslint-plugin-n": "^17.10.3"
},
Expand Down
Loading

0 comments on commit 597ecb6

Please sign in to comment.