1.0.2 • Published 10 months ago

@cmhpedro/eslint-config v1.0.2

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

ESLint config

What's included?

  • Standard ESLint config
  • Prettier
  • Simple import sort

Installation

pnpm i -D @cmhpedro/eslint-config

Setup

React (with Next.js)

.eslintrc.json:

{
  "extends": [
    "@cmhpedro/eslint-config", 
    "next/core-web-vitals"
  ]
}

React (without Next.js)

.eslintrc.json:

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