Last active
July 11, 2022 15:51
-
-
Save LuisdelaVega/e7959b3c6bc9c9160b23a3c1e70aabb3 to your computer and use it in GitHub Desktop.
My settings for vscode
This file contains 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 look and feel | |
"editor.tabSize": 2, | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "One Dark Pro", | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": true, | |
// Formatting on save | |
"editor.codeActionsOnSave": { | |
"source.fixAll": true, | |
"source.fixAll.eslint": true | |
}, | |
"editor.formatOnSave": true, | |
"files.autoSave": "onFocusChange", | |
"files.associations": { | |
"*.env.*": "env", | |
}, | |
// ESLINT | |
// "eslint.alwaysShowStatus": true, | |
// Javascript | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
// TODO Tree | |
"todo-tree.general.tags": [ | |
"BUG", | |
"HACK", | |
"FIXME", | |
"TODO", | |
"XXX", | |
"TODO-LUIS", | |
"[ ]", | |
"[x]" | |
], | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/Thumbs.db": true, | |
"**/node_modules": true, | |
"**/*.keep": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Extensions I use: