1.0.8 • Published 1 year ago

@sinh117801/eslint-config v1.0.8

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

@sinh117801/eslint-config

Usage

Install

npm install --save-dev eslint @sinh117801/eslint-config

Config .eslintrc

{
  "extends": "@sinh117801/eslint-config"
}

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

Install VS Code ESLint extension and create .vscode/settings.json

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