@pixelindustries/eslint-config
v0.10.3
Published
ESLint configuration package for maintaining Javascript code style consistent across projects, and compliant with the Pixelindustries coding guidelines
Downloads
24
Maintainers
Readme
About
This configuration for ESLint mirrors the Javascript code style guide of Pixelindustries, and allows developers to get started quickly.
Installation
Install the package with npm:
$ npm install @pixelindustries/eslint-config --save-dev
Create a .eslintrc.json
file in the root of your project, and place the contents below:
{
"extends": "@pixelindustries"
}
That's it! Any eslint process running from within your project root will now automatically pick up the PXL configuration.
Peer dependencies
###eslint
This package is useless without eslint@^4.0.0
. Read more on getting started with eslint in the Pixelindustries ESLint guide. Take special note of the section about module scope for global installations when using this package.