Skip to content

Instantly share code, notes, and snippets.

View GusPrado's full-sized avatar
🐢
Back to turtle!!

Gustavo Prado GusPrado

🐢
Back to turtle!!
View GitHub Profile
@diego3g
diego3g / settings.json
Last active June 16, 2025 20:34
VSCode Settings (Updated)
{
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [
80,
120
],
@nkbt
nkbt / .eslintrc.js
Last active April 1, 2025 03:07
Strict ESLint config for React, ES6 (based on Airbnb Code style)
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"ecmaFeatures": {