0.1.0 • Published 3 years ago

tomi-eslint-config v0.1.0

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
3 years ago

Original README

eslint-config-react

A custom eslint + prettier config for all React projects.

Installation

npm install @vp/eslint-config-om-react --save-dev

Usage

Create (or update) your .eslintrc* file. Change the extends configuration to include the below. For more configuration options, see the ESLint Docs

For javascript code

"extends": "tomi-eslint-config",

OR

"extends": [
  "tomi-eslint-config",
  ...
],

For typescript code

"extends": "tomi-eslint-config/typescript",

OR

"extends": [
  "tomi-eslint-config/typescript",
  ...
],