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 / NODE.md
Last active April 11, 2025 02:17
VSCode Settings (Updated)

⚠️ Note!

With VSCode version 1.94, the APC extension broke and there is no fix yet.

So, for those having issues with APC after the VSCode update, I recommend downloading the previous version of VSCode for now (https://code.visualstudio.com/updates/v1_93) and setting updates to manual by adding this to the editor's configuration:

"update.mode": "manual",
@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": {