Skip to content

Instantly share code, notes, and snippets.

@riivanov
Created April 3, 2023 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save riivanov/1f71a5b75a828c6955d36c66078b34b3 to your computer and use it in GitHub Desktop.
Save riivanov/1f71a5b75a828c6955d36c66078b34b3 to your computer and use it in GitHub Desktop.
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggest.insertMode": "replace"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"debug.inlineValues": "on",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.formatOnSave": true,
"editor.tabSize": 2,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.autoSave": "onFocusChange",
"files.exclude": {
"*.sublime-*": true,
"**/__pycache__": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.pytest_cache": true,
"**/.vscode": true,
"**/node_modules": true,
"env*": true,
"node_modules": true,
"venv": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/env/**": true,
"**/node_modules/**": true,
"**/venv/**": true,
"env-*": true
},
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.printWidth": 80,
"prettier.tabWidth": 2,
"scss.format.enable": true,
"scss.validate": true,
"search.exclude": {
"**/bower_components": true,
"**/env": true,
"**/node_modules": true,
"**/venv": true
},
"security.workspace.trust.untrustedFiles": "open",
"typescript.updateImportsOnFileMove.enabled": "always",
"window.menuBarVisibility": "toggle",
"window.zoomLevel": 3,
"workbench.activityBar.visible": false,
"workbench.colorTheme": "Monokai",
"workbench.editor.showTabs": false,
"workbench.startupEditor": "none"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment