1.1.4 • Published 9 months ago

eslint-config-gab v1.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Gabriel Sampaio ESLint config

Whats included?

  • Standard config base;
  • React plugin;
  • React Hooks plugin;
  • JSX a11y plugin;
  • Prettier;

Setup

React (with Next.js)

Install dependencies:

npm i -D eslint eslint-config-gab

Inside .eslintrc.json

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

React (without Next.js)

Install dependencies:

npm i -D eslint eslint-config-gab

Inside .eslintrc.json

{
  "extends": "eslint-config-gab/react"
}

Scripts

  scripts: {
    "lint": "yarn prettier --write src --single-quote && npm run eslint:fix && yarn next lint"
  }

// https://blog.cod3r.com.br/organizacao-e-padronizacao-com-eslint/