1.3.0 • Published 12 months ago

eslint-config-leadfisher v1.3.0

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

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