mdrobny / eslint-config-vgno

ESLint configuration for VG.no coding standard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VG.no ESLint Config

Version npmBuild Status

ESLint configuration for VG.no coding standard

How to use it

First, install the npm package:

npm install --save-dev eslint-config-vgno

Then add the extends option to your .eslintrc:

{
    "extends": "vgno"
}

Alternatively, you can specify this in your package.json:

{
    "name": "...",
    "other": "options",

    "eslintConfig": {
        "extends": "vgno"
    }
}

You can override specific settings by specifying them as normal. See http://eslint.org/docs/developer-guide/shareable-configs for more details.

About

ESLint configuration for VG.no coding standard

License:MIT License


Languages

Language:JavaScript 100.0%