1.0.0 • Published 3 years ago

eslint-config-rs v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

eslint-config-rs

Shared eslint config for my projects. TypeScript, node.js & react oriented. Compatible with prettier.

Installation

Add package and eslint itself to dependencies:

npm install --save-dev eslint eslint-config-rs

Add .eslintrc configuration files to corresponding directories. Project root:

{
  "extends": "rs"
}

Server-side sources:

{
  "extends": "rs/server"
}

Client-side sources:

{
  "extends": "rs/ui"
}