@wzh994/eslint-config-vue

ESLint config


Keywords
eslint-config
License
MIT
Install
npm install @wzh994/eslint-config-vue@0.1.1

Documentation

@wzh994/eslint-config

Usage

Install

pnpm add -D eslint @wzh994/eslint-config

Config .eslintrc

{
  "extends": "@wzh994"
}

Add script for package.json

{
  "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
  }
}