1.0.1 • Published 9 months ago

@pvfhv/eslint-config-base v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

@pvfhv/eslint-config-base

  • 仅使用eslint自动格式化js,html,ts,json,md文件
  • 使用简单无需繁琐的添加配置

安装

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

配置.eslintrc

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

添加命令

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

VS Code 自动修复

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