Created
February 16, 2024 21:37
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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