ESLint v7.5.0 released

We just pushed ESLint v7.5.0, which is a minor release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release.

Highlights

Optional Chaining Support

Support for optional chaining has landed in ESLint!

const maybeProp = obj.first?.second;

The default parser and built-in rules will support this syntax when you enable parserOptions.ecmaVersion: 2020 in your configuration:

{
"parserOptions": {
"ecmaVersion": 2020
}
}

Deprecating id-blacklist

id-blacklist has been deprecated and replaced with id-denylist. We renamed id-blacklist to id-denylist in the previous release (v7.4.0), which unfortunately led to some unintended breakages in the ESLint ecosystem. In this release, we have added back the id-blacklist rule and have marked it as deprecated. If you are currently using id-blacklist, we recommend switching to id-denylist to ensure you receive bug fixes and updates to the rule in future releases.

Enhancements

Bug Fixes

Documentation

Dependency Upgrades

  • f2e68ec Build: update webpack resolve.mainFields to match website config (#13457) (Milos Djermanovic)

Chores

  • 540b1af Chore: enable consistent-meta-messages internal rule (#13487) (Milos Djermanovic)
  • e14a645 Chore: use espree.latestEcmaVersion in fuzzer (#13484) (Milos Djermanovic)

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

ESLint v9.0.0-beta.2 released
2 min read

ESLint v9.0.0-beta.2 released

We just pushed ESLint v9.0.0-beta.2, 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.

ESLint v9.0.0-beta.1 released
1 min read

ESLint v9.0.0-beta.1 released

We just pushed ESLint v9.0.0-beta.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 v8.57.0 released
1 min read

ESLint v8.57.0 released

We just pushed ESLint v8.57.0, which is a minor release upgrade of ESLint. This release adds some new features and fixes several bugs found in the previous release.