1.8.0 • Published 1 year ago

eslint-config-omichelsen v1.8.0

Weekly downloads
12
License
MIT
Repository
-
Last release
1 year ago

eslint-config-omichelsen

My shared eslint and prettier config for personal projects.

Install

yarn add -D eslint-config-omichelsen

Add the config to your .eslintrc:

{
  "extends": "omichelsen"
}

For prettier plugins in VS Code you might have to add the following to your package.json:

{
  "prettier": "eslint-config-omichelsen/.prettierrc"
}

Usage

To run add the following to your package.json:

{
  "scripts": {
    "lint": "eslint src --ext .js,.ts,.tsx"
  }
}