Home

Awesome

Strict Standard config

Build Status Code Climate Dependency Status Codacy Badge bitHound Score

This is a Strict Standard configuration for ESLint. You might want to use the strict-standard tool for convenience.

Usage

npm install --save-dev eslint eslint-config-strict-standard eslint-plugin-standard eslint-plugin-promise

Create an .eslintrc file in your project:

{
  "extends": "strict-standard"
}

Add the following to your package.json:

{
    "scripts": {
        "lint": "eslint ."
    }
}