https://github.com/tale/eslint
Aarnav Tale's personal ESLint Configuration
https://github.com/tale/eslint
eslint typescript unicorn xo
Last synced: 4 months ago
JSON representation
Aarnav Tale's personal ESLint Configuration
- Host: GitHub
- URL: https://github.com/tale/eslint
- Owner: tale
- License: mit
- Created: 2022-06-07T02:29:07.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-15T15:32:51.000Z (about 2 years ago)
- Last Synced: 2025-10-29T22:46:17.249Z (8 months ago)
- Topics: eslint, typescript, unicorn, xo
- Language: JavaScript
- Homepage:
- Size: 336 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-tale
> My personal ESLint configuration.
This configuration is very simple and only includes a few rules that I find useful.
I try to follow a lot of the "recommended" rules, with minimal changes on top.
Here's what's included:
- React & JSX/TSX
- Node (CommonJS & ESM)
- Sensible Defaults (ES6+)
## Usage
> This config does not support the legacy `.eslintrc.*` format anymore.
Create an `eslint.config.js` file in your project root with the following:
```js
import tale from 'eslint-config-tale'
export default [
...tale,
{
// Optional overrides if you need them
}
]
```