Skip to content

Instantly share code, notes, and snippets.

View luizwhite's full-sized avatar
🎯
Focusing

Luiz Augusto luizwhite

🎯
Focusing
View GitHub Profile
@luizwhite
luizwhite / .eslintrc.json
Created November 2, 2021 17:23
React Vite Eslint Config
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react-hooks/recommended",
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
@luizwhite
luizwhite / .eslintrc.json
Last active February 22, 2022 23:37
Node.js Eslint Config
{
"env": {
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
@luizwhite
luizwhite / .eslintrc.json
Last active February 26, 2022 18:37
Next.js Eslint Config
{
"extends": ["next/core-web-vitals", "plugin:prettier/recommended"],
"plugins": ["import-helpers"],
"rules": {
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
"module",