Skip to content

ESLint代码规范

安装

bash
pnpm add -D eslint typescript @jellyclub/eslint-config

设置 .eslintrc

json
{
  "extends": "@jellyclub"
}

已经提供 .eslintignore 预设,本地并不需要设置

在 package.json 中添加scripts

例如:

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

设置 VS Code 自动修复

Create .vscode/settings.json

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