https://github.com/fa7ad/eslint-config-tfnode
An eslint config for TS+Node
https://github.com/fa7ad/eslint-config-tfnode
Last synced: 12 months ago
JSON representation
An eslint config for TS+Node
- Host: GitHub
- URL: https://github.com/fa7ad/eslint-config-tfnode
- Owner: fa7ad
- License: mit
- Created: 2023-08-06T13:18:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-14T21:41:23.000Z (over 2 years ago)
- Last Synced: 2025-02-05T19:13:37.119Z (over 1 year ago)
- Language: JavaScript
- Size: 994 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-tfnode
An eslint config for TS+Node (with prettier)
## Usage
Install the config
```bash
yarn add @fa7ad/eslint-config-tfnode
```
Create a `.eslintrc.js` file with the following content:
```javascript
require('@fa7ad/eslint-config-tfnode/patch')
module.exports = {
extends: '@fa7ad/eslint-config-tfnode',
parserOptions: {
project: './tsconfig.json'
}
}
```