@netsells/eslint-config
v8.0.3
Published
Eslint config for the Netsells organisation
Downloads
1,271
Keywords
Readme
Netsells Eslint Config
This repository contains the defacto-standard eslint configuration used on all Netsells projects, both internally and client.
Usage
Add the config to your project dependencies:
yarn add @netsells/eslint-config eslint
Extend the config in your project. For example, a .eslintrc
file in your project root:
{
"extends": "@netsells"
}
With webpack
Add the eslint-loader to your project:
yarn add eslint-loader
Add the loader into your workflow. The following example will force the linter to be ran before other loaders such as babel compilation. This means we lint the raw ES6 code rather than the transpiled ES5 output:
{
module: {
rules: [
{
test: /.(vue|js)$/,
loader: 'eslint-loader',
enforce: 'pre',
exclude: /node_modules/,
},
],
},
},
Contributing
If you disagree with any rules in this linter, or feel additional rules should be added, please open an issue on this project to initiate an open dialogue with all team members. Please bear in mind this is a public repository.