developer-plus / eslint-config

developer-plus's ESLint config presets.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@developer-plus/eslint-config

Fork antfu/eslint-config.

  • Single quotes, no semi
  • Auto fix for formatting (aimed to be used standalone without Prettier)
  • TypeScript, Vue, React out-of-box
  • Lint also for json, yaml, markdown
  • Sorted imports, dangling commas for cleaner commit diff
  • Reasonable defaults, best practices, only one-line of config

Usage

Install

pnpm add -D eslint @developer-plus/eslint-config

Config .eslintrc

{
  "extends": "@developer-plus"
}

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, made with đź’—.

About

developer-plus's ESLint config presets.

License:MIT License


Languages

Language:JavaScript 99.6%Language:TypeScript 0.4%