0.0.2 • Published 2 months ago

@voltax/eslint-config-base v0.0.2

Weekly downloads
-
License
-
Repository
-
Last release
2 months ago

@voltax/eslint-config-base

  • 合理的默认配置
  • 无需配合 Prettier 也能自动修复格式化
  • 使用简单无需繁琐的添加配置

安装

pnpm add -D @voltax/eslint-config-base

配置.eslintrc

{
  "extends": ["@voltax/eslint-config-base"]
}

添加命令

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

VS Code 自动修复

{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  }
}