0.2.1 • Published 1 year ago

@cgnal/eslint-config v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

CGnal ESLint rules

NPM version Build Status

Linting rules for CGnal's JavaScript projects.

Installation

npm install @cgnal/eslint-config --save-dev

The package requires the following peer dependencies:

Usage

Add the rulesets you want in the extends section of your ESLint configuration file.

e.g. to use both JS and React's rules:

// ...

extends: [
    "@cgnal/eslint-config/js",
    "@cgnal/eslint-config/react"
]

// ...

npm scripts

  • npm run bump updates version number using an interactive shell
  • npm run check validates all rules and performs the linting check
  • npm run check-js validates JS rules
  • npm run check-react validates React rules
  • npm run check-rules validates all rules
  • npm run lint performs the linting check