ESLint v10.0.0-rc.2 released

We just pushed ESLint v10.0.0-rc.2, which is a patch release upgrade of ESLint. This release fixes several bugs found in the previous release.

Highlights

This version of ESLint is not ready for production use and is provided to gather feedback from the community before releasing the final version. Please let us know if you have any problems or feedback by creating issues on our GitHub repo.

Note that this prerelease version of ESLint has a separate documentation section.

Notable bug fixes

  • A regression in the core strict rule has been fixed.
  • LegacyESLint and FlatESLint exports are now completely removed from the /use-at-your-own-risk entrypoint. In previous prerelease versions of ESLint v10, they were exported as null.

Installing

Since this is a pre-release version, you will not automatically be upgraded by npm. You must specify the next tag when installing:

npm i eslint@next --save-dev

You can also specify the version directly:

npm i eslint@10.0.0-rc.2 --save-dev

Migration Guide

As there are a lot of changes, we’ve created a migration guide describing the breaking changes in great detail along with the steps you should take to address them. We expect that most users should be able to upgrade without any build changes, but the migration guide should be a useful resource if you encounter problems.

Bug Fixes

  • 727451e fix: fix regression of global mode report range in strict rule (#20462) (ntnyq)
  • e80485f fix: remove fake FlatESLint and LegacyESLint exports (#20460) (Francesco Trotta)
  • 9eeff3b fix: update esquery (#20423) (cryptnix)

Documentation

  • 1495654 docs: Update README (GitHub Actions Bot)
  • 0b8ed5c docs: document support for :is selector alias (#20454) (sethamus)
  • 1c4b33f docs: Document policies about ESM-only dependencies (#20448) (Milos Djermanovic)

Chores

  • 2d14173 chore: fix typos in docs and comments (#20458) (o-m12a)

The latest ESLint news, case studies, tutorials, and resources.

ESLint v10.0.0-rc.1 released
2 min read

ESLint v10.0.0-rc.1 released

We just pushed ESLint v10.0.0-rc.1, which is a minor release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release.

ESLint's 2025 year in review
5 min read

ESLint's 2025 year in review

2025 saw the expansion of ESLint to CSS and HTML, the introduction of multithreaded linting, and the first steps toward v10.0.0.

ESLint v10.0.0-rc.0 released
3 min read

ESLint v10.0.0-rc.0 released

We just pushed ESLint v10.0.0-rc.0, which is a major release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release. This release also has some breaking changes, so please read the following closely.