2022-11-30 21:16:29 +08:00
2022-11-29 17:33:00 +08:00
2022-11-30 21:16:29 +08:00
2020-08-12 19:24:32 +08:00
2019-12-12 02:21:20 +08:00
2022-09-03 13:03:40 +08:00
2022-03-30 16:57:53 +08:00
2022-03-11 04:46:10 +08:00
2022-11-30 21:16:29 +08:00
2022-11-29 17:33:00 +08:00
2020-08-12 19:24:32 +08:00
2022-11-30 09:04:41 +08:00

@antfu/eslint-config

npm

  • Single quotes, no semi
  • Auto fix for formatting (aimed to be used standalone without Prettier)
  • Designed to work with TypeScript, Vue out-of-box
  • Lint also for json, yaml, markdown
  • Sorted imports, dangling commas
  • Reasonable defaults, best practices, only one-line of config
  • Style principle: Minimal for reading, stable for diff

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

Install VS Code ESLint extension and create .vscode/settings.json

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

TypeScript Aware Rules

Type aware rules are enabled when a tsconfig.eslint.json is found in the project root. Refer to this file.

Extended Reading

Learn more about the context - Why I don't use Prettier.

Check Also

License

MIT License © 2019-PRESENT Anthony Fu

Description
No description provided
Readme 1.7 MiB
Languages
TypeScript 49.8%
JavaScript 41.3%
Vue 6.9%
HTML 1.1%
CSS 0.9%