eslint-config-ku-dev
v0.4.3
Published
ESLint shareable config for the Koc University style, based of Google's ESLint Plugin
Downloads
3
Readme
An ESLint shareable config based off of the Google style with extra ES6, Promise, and Mocha rules for use with Koc University projects.
Install
$ npm install --save-dev eslint eslint-config-ku-dev
Usage
Add some ESLint config to your package.json
:
{
"scripts": {
"lint": "eslint ."
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-ku-dev": "^0.4.3"
},
"eslintConfig": {
"extends": "ku-dev"
}
}
Then lint with $ npm run lint
.