1.5.9 • Published 18 days ago

@dgvalerio/eslint-config v1.5.9

Weekly downloads
-
License
ISC
Repository
github
Last release
18 days ago

Eslint Configuration

ESlint configuration recommended by Davi Gonçalves Valério.

What's included?

ReactNextNest
Google config base
Import Helpers plugin
React plugin
React Hooks plugin
JSX a11y plugin
Prettier
JSDoc Plugin

Setup

  1. Install the dependencies
    npm i -D eslint @dgvalerio/eslint-config
  2. Create a .eslintrc.json file extending the config:\ If you want to set up a ReactJS project:
    {
      "extends": "@dgvalerio/eslint-config/react"
    }
    If you want to set up a Next.js project:
    {
      "extends": "@dgvalerio/eslint-config/next"
    }
    If you want to set up a NestJS project:
    {
      "extends": "@dgvalerio/eslint-config/nest"
    }