1.0.1 • Published 7 years ago

eslint-config-cultserv v1.0.1

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

ESLint Config by CultServ

Install ESLint and config:

$ npm install eslint eslint-config-cultserv --save-dev

Create .eslintrc in your project containing:

{
  "extends": "cultserv"
}

Append project-specific env and globals params:

{
  "extends": "cultserv",
  "env": {
    "jquery": true,
    "jasmine": true
  },
  "globals": {
    "angular": false,
    "moment": false
  }
}

That's it!