1.2.0 • Published 2 years ago

@tmware/eslint-config v1.2.0

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

@tmware/eslint-config NPM

ESLint config for my JavaScript projects.

TypeScript configuration has moved to @tmware/eslint-config-typescript.

Installation

yarn add @tmware/eslint-config eslint --dev
npm i @tmware/eslint-config eslint --save-dev

Usage

To use the ESLint config, add the following to your .eslintrc:

{
  "extends": "@tmware/eslint-config"
}

Lint script for package.json

...
"lint": "eslint --ext .js --ignore-path .gitignore src/"
...