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

npm-update-package/eslint-config-typescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version lint ESLint Recommended

@npm-update-package/eslint-config-typescript

ESLint Shareable Config for TypeScript

Installation

npm:

npm i -D @npm-update-package/eslint-config-typescript

Yarn:

yarn add -D @npm-update-package/eslint-config-typescript

Usage

Add @npm-update-package/eslint-config-typescript to extends of your ESLint config.

module.exports = {
  extends: [
    '@npm-update-package/eslint-config-typescript'
    // add other rulesets here if needed
  ],
  rules: {
    // override/add rules settings here if needed
  }
}