Go to file
2022-03-10 20:29:48 +08:00
fixture feat: update ts rules 2022-01-07 03:23:12 +08:00
packages chore: package.json keys 2022-03-10 20:29:48 +08:00
.eslintrc.json feat: add react and all 2020-08-12 19:24:32 +08:00
.gitignore chore: allow lock files 2019-12-12 02:21:20 +08:00
CHANGELOG.md v0.18.5 2022-03-10 20:26:37 +08:00
lerna.json v0.18.5 2022-03-10 20:26:37 +08:00
LICENSE docs: add license 2019-07-18 04:14:53 +08:00
package.json chore: lint 2022-03-10 20:28:42 +08:00
pnpm-lock.yaml fix: markdown parser 2022-03-08 03:17:55 +08:00
pnpm-workspace.yaml feat: add react and all 2020-08-12 19:24:32 +08:00
README.md fix: package.json keys order 2022-03-10 20:26:31 +08:00

@antfu/eslint-config

npm

Usage

Install

pnpm add -D eslint @antfu/eslint-config

Config .eslintrc

{
  "extends": "@antfu"
}

Add script for package.json

For example:

{
  "scripts": {
    "lint": "eslint ."
  }
}

Config VS Code auto fix

Create .vscode/settings.json

{
  "prettier.enable": false,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  }
}