eslint-config-dguryev
v1.0.1
Published
JavaScript style guide by Dmitry Guryev
Readme
ESLint Config by Dmitry Guryev
Install ESLint and config:
$ npm install eslint eslint-config-dguryev --save-devCreate .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!
