0.0.8 • Published 2 years ago

@caryhu/eslint-config v0.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@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