Skip to content

Instantly share code, notes, and snippets.

@manavm1990
Created February 16, 2024 21:37
Show Gist options
  • Save manavm1990/70ed6eccf92830b9125d37e5c66fed82 to your computer and use it in GitHub Desktop.
Save manavm1990/70ed6eccf92830b9125d37e5c66fed82 to your computer and use it in GitHub Desktop.
These settings and extensions are ideal for beginners working with basic Node programs in VS Code.
{
"recommendations": [
"aaron-bond.better-comments",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"mgmcdermott.vscode-language-babel",
"streetsidesoftware.code-spell-checker",
"usernamehw.errorlens",
"vivaxy.vscode-conventional-commits"
]
}
{
"editor.codeActionsOnSave": {
"addMissingImports": "explicit",
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.bracketPairColorization.enabled": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.wordWrap": "wordWrapColumn",
"files.autoSave": "onFocusChange",
"javascript.autoClosingTags": true,
"javascript.inlayHints.parameterNames.enabled": "all",
"javascript.inlayHints.variableTypes.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment