Licence
MIT
Version
1.0.1
Deps
0
Vulns
0
Weekly
0
ESLint Config by Dmitry Guryev
Install ESLint and config:
$ npm install eslint eslint-config-dguryev --save-dev
Create .eslintrc in your project containing:
{
"extends": "dguryev"
}
Append project-specific env and globals params:
{
"extends": "dguryev",
"env": {
"jquery": true,
"jasmine": true
},
"globals": {
"angular": false,
"moment": false
}
}
That's it!