1.0.2 • Published 4 years ago

eslint-config-azido v1.0.2

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
4 years ago

eslint-config-azido

Azido Group ESLint Rules and Standards.

Installation within a project

Make sure you do not already have eslint globally installed in your system. There's an ESLint bug report with further details.

Remove ESLint globally

npm uninstall eslint -g
rm ~/.eslintrc

Add a new dev dependency to your project:

npm install --save-dev eslint-config-azido

In the project root directory, create an empty file called .eslintrc.json:

touch .eslintrc.json

In the .eslintrc.json file, add the following:

{
  "extends": "eslint-config-azido"
}

Further Reading