0.2.0 • Published 8 years ago

eslint-config-andersos v0.2.0

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

eslint-config-andersos Build Status

ESLint config for @andersos

How to use it

First, install the npm package:

npm install --save-dev eslint-config-andersos

Then add the extends option to your .eslintrc:

{
    "extends": "andersos"
}

For React.js rules you can add

{
    "extends": [
      "andersos",
      "andersos/react"
    ]
}

You can override specific settings by specifying them as normal. See http://eslint.org/docs/developer-guide/shareable-configs for more details.

Publishing

Update CHANGELOG
$ npm version <patch | minor | major>
$ git push --tags origin master
$ npm publish