0.1.2 • Published 9 years ago
eslint-config-66nao v0.1.2
eslint-plugin-66nao
eslint config for 66nao projects
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-config-66nao:
$ npm install eslint-config-66nao --save-devNote: 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']