Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 750 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 750 Bytes

Neo9 coding style

ESLint coding style inspired from Airbnb coding style.

⚠️ 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'