Go to file
2022-05-29 23:01:40 +08:00
fixture feat: update ts rules 2022-01-07 03:23:12 +08:00
packages release v0.25.0 2022-05-29 23:01:40 +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.19.1 2022-03-30 16:57:53 +08:00
LICENSE chore: update 2022-03-11 04:46:10 +08:00
package.json release v0.25.0 2022-05-29 23:01:40 +08:00
pnpm-lock.yaml chore: update deps 2022-05-25 05:09:36 +08:00
pnpm-workspace.yaml feat: add react and all 2020-08-12 19:24:32 +08:00
README.md Update README.md 2022-04-06 20:45:50 +08:00

@antfu/eslint-config

npm

  • 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

Usage

Install

pnpm add -D eslint @antfu/eslint-config

Config .eslintrc

{
  "extends": "@antfu"
}

You don't need .eslintignore normally as it has been provided by the preset.

Add script for package.json

For example:

{
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint . --fix"
  }
}

Config VS Code auto fix

Create .vscode/settings.json

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

Check Also

License

MIT