Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 771 Bytes

Readme.md

File metadata and controls

50 lines (36 loc) · 771 Bytes

@caryhu/eslint-config npm

Customized with @antfu/eslint-config

Usage

Install

npm install -D eslint @caryhu/eslint-config

Config .eslintrc

{
  "extends": "@caryhu"
}

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

Create .vscode/settings.json

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

License

MIT