Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

ESLint config for leadfisher projects

1. Install ESLint, this config and required plugins:

npm i -D eslint prettier eslint-plugin-import eslint-config-leadfisher eslint-config-prettier eslint-plugin-prettier

2. Add "extends": ["leadfisher"] to your .eslintrc.

3. (optional) Add following scripts

{
  "scripts": {
    "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
    "fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
    "test": "npm run -s lint"
  }
}

Copyright & contributors

Copyright © 2023 Leadfisher contributors. Eslint-config-leadfisher is MIT licensed license.
Eslint-config-leadfisher is one of leadfisher solutions.