0.14.2 • Published 1 month ago

@naporin0624/eslint-config v0.14.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 month ago

@naporin0624/eslint-config

Usage

neverthrow を使用しているので install する

https://github.com/supermacro/neverthrow#recommended-use-eslint-plugin-neverthrow

npm install neverthrow

.eslintrc.json

{
  "extends": ["@naporin0624/eslint-config"]
}

package.json

"fmt:prettier": "prettier --write src",
"fmt:eslint": "eslint --cache --ext .ts,.tsx --fix src",
"lint": "eslint --cache --ext .ts,.tsx src"

Use default and react config.

.eslintrc.json

{
  "extends": ["@naporin0624/eslint-config", "@naporin0624/eslint-config/react"],
  "rules": {
    "react/react-in-jsx-scope": "off"
  }
}