Skip to content

Instantly share code, notes, and snippets.

View felpfsf's full-sized avatar
🎯
Focusing

Felipe F. felpfsf

🎯
Focusing
View GitHub Profile
@Gustavo-Kuze
Gustavo-Kuze / setup_prettier_eslint_airbnb.md
Last active February 11, 2024 03:45
Como configurar o Prettier/ESLint com o preset do AirBnb em projetos React e NodeJS

Como configurar o Prettier/ESLint com o preset do AirBnb em projetos React e NodeJS

ReactJS

  1. Instale as seguintes dependencias em seu projeto React:
yarn add -D babel-eslint prettier eslint-config-prettier eslint-plugin-prettier eslint eslint-plugin-react eslint-config-airbnb eslint-plugin-jsx-a11y eslint-plugin-import eslint-import-resolver-webpack
@luzfcb
luzfcb / template_LGPD.md
Last active July 22, 2024 03:30
Template LGPD - Template para solicitar exclusão de dados conforme a LGPD - Lei Geral de Proteção de Dados do brasil. LEI Nº 13.709, DE 14 DE AGOSTO DE 2018. Disclaimer: Não sou advogado e não me responsabilizo por qualquer coisa decorrente do uso desde conteudo. Use por sua conta e risco.

Olá <NOME_EMPRESA>.

Vocês estão me enviando <email, ligação, SMS, via plataforma Whatsapp, via plataforma Telegram> comerciais não-solicitados, portanto SPAM.

No dia vocês enviaram ao meu uma mensagem comércial, com o seguinte texto:

<MENSAGEM>
@Luisgustavom1
Luisgustavom1 / ComposeProviders.tsx
Last active December 27, 2022 19:10
Compose React Providers to avoid too much chaining
import React from 'react'
interface IComposeProvidersProps {
with: Array<React.ElementType>
children: React.ReactNode
}
export const ComposeProviders = ({
with: Providers,
children,
@LukeberryPi
LukeberryPi / settings.json
Last active June 20, 2024 22:51
my vscode setup
{
"workbench.colorTheme": "Vesper",
"workbench.iconTheme": "chalice-icon-theme",
"editor.fontSize": 15,
"editor.fontWeight": "300",
"terminal.explorerKind": "external",
"terminal.integrated.fontSize": 20,
"terminal.integrated.fontWeight": "300",
"editor.glyphMargin": false,
"editor.fontFamily": "JetBrains Mono",