3.0.1 • Published 8 years ago

eslint-config-strict-standard v3.0.1

Weekly downloads
8
License
ISC
Repository
github
Last release
8 years ago

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

Create an .eslintrc file in your project:

{
  "extends": "strict-standard"
}

Add the following to your package.json:

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