eslint-config-binden-ts
Version:
Shareable TypeScript ESLint config
23 lines (16 loc) • 1.66 kB
Markdown
# eslint-config-binden-ts  [](https://github.com/binden-js/eslint-config-ts) [](https://snyk.io/test/github/binden-js/eslint-config-ts) [](https://github.com/prettier/prettier) [](CODE_OF_CONDUCT.md) [](https://github.com/semantic-release/semantic-release) [](https://conventionalcommits.org)    
Shareable [TypeScript ESLint](https://github.com/typescript-eslint/typescript-eslint) config.
## Installation
```sh
npm i --save-dev eslint-config-binden-ts
```
## Usage
- Add a path to your `tsconfig.json` file
```js
// eslint.config.js
import config from "eslint-config-binden-ts";
export default [
...config,
{ languageOptions: { parserOptions: { project: "tsconfig.json" } } },
];
```