1.0.1 • Published 7 years ago

eslint-config-dguryev v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

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!