@baiwusanyu/eslint-config-monorepo

1.0.16 • Public • Published

@baiwusanyu/eslint-config

copy from chris

  • 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 @baiwusanyu/eslint-config

Config .eslintrc

{
  "extends": "@baiwusanyu"
}

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

Readme

Keywords

none

Package Sidebar

Install

npm i @baiwusanyu/eslint-config-monorepo

Weekly Downloads

1

Version

1.0.16

License

MIT

Unpacked Size

43.1 kB

Total Files

36

Last publish

Collaborators

  • baiwusanyu