6.1.0 • Published 5 months ago

@neo9/n9-coding-style v6.1.0

Weekly downloads
122
License
GPL-3.0-or-later
Repository
github
Last release
5 months ago

Neo9 coding style

ESLint coding style inspired from Airbnb coding style.

:warning: Drop NodeJS 14 support stating with version 5

Usage

yarn add @neo9/n9-coding-style --dev

Add a .eslintrc.yaml file in the root directory.

extends:
  - './node_modules/@neo9/n9-coding-style/.eslintrc.yaml'

Add a lint script to your package.json :

{
  ...
  "lint": "eslint --config .eslintrc.yaml '{src,test}/**/*.ts'",
  ...
}

Example of usage :

Auto fix errors

EsLint can sometimes auto fix errors. You can use the local binary.

npx eslint --fix '{src,test}/**/*.ts'