1.0.6 • Published 9 months ago

@vunbo/eslint-config v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
9 months ago

config-eslint

the best config for eslint, extends @antfu

Usage

install

pnpm add -D eslint @vunbo/eslint-config

Config .eslintrc.js

module.exports = {
  extends: '@vunbo',
}

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

Override rules

  • '@typescript-eslint/brace-style': ['error', '1tbs', { allowSingleLine: true }]
  • 'curly': ['error', 'all']
1.0.6

9 months ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago