Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Last active July 15, 2021 12:16
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 jakub-g/34afe028275b65b03603dcaf23a4436d to your computer and use it in GitHub Desktop.
Save jakub-g/34afe028275b65b03603dcaf23a4436d to your computer and use it in GitHub Desktop.
vscode settings.json dell
{
"files.trimTrailingWhitespace": true,
"window.title": "${rootPath}${separator}${activeEditorMedium}${separator}${appName}",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.mouseWheelZoom": true,
"window.menuBarVisibility": "default",
"window.titleBarStyle": "custom",
"eslint.autoFixOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"files.eol": "\n",
"editor.minimap.enabled": false,
"openInGitHub.useCommitSHAInURL": false,
"prettier.requireConfig": true,
"search.useGlobalIgnoreFiles": true,
"search.useIgnoreFiles": true,
"typescript.validate.enable": false,
"multiCommand.commands": [
{
"command": "multiCommand.openFileKeepFocusInExplorer",
"interval": 150,
"sequence": [
"list.select",
"workbench.explorer.fileView.focus",
]
}
],
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.copyWithSyntaxHighlighting": false,
"typescript.suggest.paths": true,
"path-intellisense.extensionOnImport": true,
"path-intellisense.autoSlashAfterDirectory": true,
"typescript.preferences.importModuleSpecifierEnding": "js",
"javascript.preferences.importModuleSpecifierEnding": "js",
"files.defaultLanguage": "javascript",
"debug.node.autoAttach": "on",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.multiCursorModifier": "alt",
"editor.columnSelection": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment