4.0.0 • Published 1 month ago

eslint-config-binden-ts v4.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

eslint-config-binden-ts CI Status version Known Vulnerabilities code style: prettier Contributor Covenant semantic-release Conventional Commits GitHub top language Node.js version npm downloads License

Shareable TypeScript ESLint config.

Installation

npm i --save-dev eslint-config-binden-ts

Usage

  • Add a path to your tsconfig.json file
// eslint.config.js
import config from "eslint-config-binden-ts";
export default [
  ...config,
  { languageOptions: { parserOptions: { project: "tsconfig.json" } } },
];