Skip to content

Andersos/eslint-config-andersos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-config-andersos Build Status Dependency Status devDependency 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>
$ npm publish