@nighttrax/eslint-config-tsx
Version:
NiGhTTraX's ESLint config for TSX apps
23 lines (15 loc) • 317 B
Markdown
## Intro
My ESLint config for TS React projects. It uses https://www.npmjs.com/package/@rushstack/eslint-patch to bundle all necessary plugins.
## Install
```sh
npm i @nighttrax/eslint-config-tsx
```
## Use
```js
module.exports = {
'root': true,
'extends': [
'@nighttrax/eslint-config-tsx',
]
};
```