ESLint shareable config for the Ronik Design code style. This script builds on the XO shareable config with small changes and additions.
$ npm install --save-dev eslint eslint-config-ronik
Add the appropriate ESLint config to your package.json
:
{
"scripts": {
"lint": "eslint"
},
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-ronik": "^1.0.0"
},
"eslintConfig": {
"extends": "ronik"
}
}
Lint with
$ npm run lint