Go to file
2022-03-10 20:19:52 +08:00
fixture feat: update ts rules 2022-01-07 03:23:12 +08:00
packages fix: package.json key orders 2022-03-10 20:19:52 +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.3 2022-03-08 03:29:02 +08:00
lerna.json v0.18.3 2022-03-08 03:29:02 +08:00
LICENSE docs: add license 2019-07-18 04:14:53 +08:00
package.json fix: package.json key orders 2022-03-10 20:19:52 +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 docs: add README (#66) 2021-10-31 22:58:00 +08:00

@antfu/eslint-config

npm

Usage

Install

pnpm add -D eslint @antfu/eslint-config

Config .eslintrc

{
  "extends": [
    "@antfu"
  ]
}

Config .eslintignore

dist
public

Add script for package.json

For example:

{
  "scripts": {
    "lint": "eslint \"**/*.{vue,ts,js}\""
  }
}

Config VSCode auto fix

Create .vscode/settings.json

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