This package provides the agreed-upon set of JavaScript linting rules for all JavaScript projects at Signavio. The rule set is based upon the linting rules employed at [airbnb](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb
npm install eslint-config-signavioThis package provides the agreed-upon set of JavaScript linting rules for all JavaScript projects at Signavio.
The rule set is based upon the linting rules employed at airbnb.
First install this package as a devDependency in your project.
``shell`
npm install --save-dev eslint-config-signavio
or
`shell`
yarn add -D eslint-config-signavio
After that create a .eslintrc.js file and add the following:
`json`
{
"extends": "signavio"
}
We encourage everybody to start discussions and file PRs with changes to this rule set.
However please always make a good point, why you want to introduce a change.
Simply "not liking" something doesn't count.
See CHANGELOG.md`