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

TMWare/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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