ESLint v7.8.0 released

by Kai Cataldo - 31 August 2020

We just pushed ESLint v7.8.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

Support for logical assignment operators and numeric separators has landed in ESLint! To enable linting this syntax, please set ecmaVersion to 2021:

{
    "parserOptions": {
        "ecmaVersion": 2021
    }
}

Enhancements

Documentation

Dependency Upgrades

Chores