Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 697 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 697 Bytes

@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/"
...