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

Latest commit

 

History

History
37 lines (27 loc) · 977 Bytes

README.md

File metadata and controls

37 lines (27 loc) · 977 Bytes

npm version lint ESLint Recommended

@rollupjs/eslint-config-typescript

ESLint Shareable Config for TypeScript

Installation

npm:

npm i -D @rollupjs/eslint-config-typescript

Yarn:

yarn add -D @rollupjs/eslint-config-typescript

Usage

Add @rollupjs/eslint-config-typescript to extends of your ESLint config.

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