eslint-config/README.md

64 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2021-10-31 22:58:00 +08:00
# @antfu/eslint-config
2022-03-11 04:46:10 +08:00
[![npm](https://img.shields.io/npm/v/@antfu/eslint-config?color=a1b858&label=)](https://npmjs.com/package/@antfu/eslint-config)
2021-10-31 22:58:00 +08:00
2022-03-11 04:43:17 +08:00
- Single quotes, no semi
- Auto fix for formatting (aimed to be used standalone without Prettier)
- TypeScript, Vue, React out-of-box
- Lint also for json, yaml, markdown
- Sorted imports, dangling commas for cleaner commit diff
- Reasonable defaults, best practices, only one-line of config
2021-10-31 22:58:00 +08:00
## Usage
### Install
```bash
pnpm add -D eslint @antfu/eslint-config
```
### Config `.eslintrc`
```json
{
2022-03-10 20:22:02 +08:00
"extends": "@antfu"
2021-10-31 22:58:00 +08:00
}
```
2022-03-11 04:43:17 +08:00
> You don't need `.eslintignore` normally as it has been provided by the preset.
2021-10-31 22:58:00 +08:00
### Add script for package.json
For example:
```json
{
"scripts": {
2022-03-10 20:22:02 +08:00
"lint": "eslint ."
2021-10-31 22:58:00 +08:00
}
}
```
2022-03-10 20:26:31 +08:00
### Config VS Code auto fix
2021-10-31 22:58:00 +08:00
Create `.vscode/settings.json`
```json
{
"prettier.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}
```
2022-03-11 04:46:10 +08:00
## Check Also
- [antfu/vscode-settings](https://github.com/antfu/vscode-settings) - My VS Code settings
- [antfu/ts-starter](https://github.com/antfu/ts-starter) - My starter template for TypeScript library
- [antfu/vitesse](https://github.com/antfu/vitesse) - My starter template for Vue & Vite app
## License
MIT