ESLint v3.6.0 released

We just pushed ESLint v3.6.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

This is a summary of the major changes you need to know about for this version of ESLint.

Support for ES2017

With this release, we support ES2017 syntax natively. To activate ES2017 parser option, you need to update parser option (in your .eslintrc.* file).

{
    "parserOptions": {
        "ecmaVersion": 2017,
        "sourceType": "module"
    }
}

Rules enhanced to support ES2017

Auto-Fix

Four rules gained support for the --fix command line option:

Enhancements

Bug Fixes

Documentation

Dependency Upgrades

Chores