0.1.2 • Published 8 years ago

eslint-config-66nao v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

eslint-plugin-66nao

eslint config for 66nao projects

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-config-66nao:

$ npm install eslint-config-66nao --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-config-66nao globally.

Usage

Add 66nao to the extends section of your .eslintrc configuration file.

{
  "extends": "66nao",
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "66nao/rule-name": 2
    }
}

Supported Rules

This follows the vue rules and overwrite some rules:

  • 'semi': [2, 'always']
  • 'operator-linebreak': [2, 'before']