Go to file
2021-12-06 05:40:44 +08:00
packages v0.12.1 2021-12-06 05:40:44 +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.12.1 2021-12-06 05:40:44 +08:00
lerna.json v0.12.1 2021-12-06 05:40:44 +08:00
LICENSE docs: add license 2019-07-18 04:14:53 +08:00
package.json chore: update deps 2021-11-28 01:01:34 +08:00
pnpm-lock.yaml chore: update deps 2021-11-28 01:01:34 +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
  }
}