@axonteam/eslint-config
v2.2.1
Published
Eslint config for all AxonTeam javascript projects
Downloads
12
Readme
eslint-config
This is the global eslint config for all Axonteam javascript projects.
This configuration is not meant to be permissive, however, it aims to be fairly strict to guarantee consistent code style.
The philosophy is to comply to the linter when writing the code. It helps you writing cleaner and more efficient code. If there is something you really don't want to do like the linter says, you explicitly disable the rule or the line. This way, we make sure to reduce errors as much as possible, and that if you choose to ignore a rule you're fully aware.
All team projects should be using this configuration, however, everyone is welcome to use it.
Installations
This package is availabe on npm here.
Install this package with npm install @axonteam/eslint-config
or yarn add @axonteam/eslint-config
.
Make sure to have eslint already installed in your project.
Now simply create a .eslintrc.json
file and add the following: "extends": "@axonteam/eslint-config"
or simply: "extends": "@axonteam"
.
Contributions
Make sure to PR any rule that could be added using the same code style idea. Nothing can ensure the pull request will be accepted but contribution is always welcome.