Skip to content

Releases: EvgenyOrekhov/eslint-config-hardcore

7.6.0

08 Dec 15:35
Compare
Choose a tag to compare

Add hardcore/node config.

Use it in addition to other configs:

{
    "extends": ["hardcore", "hardcore/fp", "hardcore/node"]
}

Or, if your project contains both non-Node and Node files, use it like this:

{
    "extends": ["hardcore", "hardcore/fp"],
    "env": {
        "browser": true
    },
    "overrides": [
        {
            "files": ["server/**/*.js"],
            "extends": ["hardcore/node"],
            "env": {
                "browser": false
            }
        }
    ]
}

7.5.0

08 Dec 14:13
Compare
Choose a tag to compare

Changes:

7.4.0

07 Dec 16:53
Compare
Choose a tag to compare

Changes:

* You have to use the --ext option to lint *.json files:

eslint . --ext .js,.json

7.0.0

17 Oct 19:57
Compare
Choose a tag to compare

Breaking changes:

6.0.0

01 Sep 11:48
Compare
Choose a tag to compare

Breaking changes:

5.0.0

24 Aug 12:20
Compare
Choose a tag to compare

Breaking (severe) changes:

  • Add eslint-plugin-security

Other changes:

  • Update eslint-plugin-promise to 4.0.0