0.0.9 • Published 6 months ago

eslint-config-bitsy v0.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

ESLint config

  • ESLint: JavaScript, JSON, TypeScript, Vue, React
  • Prettier: HTML, CSS, Less, Sass, Scss, MD, MDX, YAML

Usage

Install

pnpm i eslint typescript eslint-config-bitsy -D

ESLint Config File

create config file .eslintrc

{
  "extends": "bitsy"
}
  • bitsy: base config, lint JS, TS, JSON
  • bitsy/vue: extend base config, lint Vue3
  • bitsy/react: extend base config, lint React

please choose the suitable config for your project

You don't need .eslintignore normally as it has been provided by the preset.

Add script command in package.json

{
  "scripts": {
    "lint": "eslint . --fix"
  }
}
  • then you can use the following command to format and fix the code
pnpm lint