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 ECMA2017

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

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

Rules enhanced to support ECMA2017

Auto-Fix

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

Enhancements

Bug Fixes

Documentation

Dependency Upgrades

Chores