Skip to content

Instantly share code, notes, and snippets.

@alexdisdier
Created March 6, 2020 05:41
Show Gist options
  • Save alexdisdier/c91d7edb79df217e263eb2ed45af8393 to your computer and use it in GitHub Desktop.
Save alexdisdier/c91d7edb79df217e263eb2ed45af8393 to your computer and use it in GitHub Desktop.
VSCODE User settings
// VSCODE Extensions installed: Bracket Pair Colorizer, Docker, ESLint, Fix JSON, Git Blame, GraphQl, Material Icon Theme, npm intellisense
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 16,
"editor.wordWrap": "on",
"editor.tabSize": 2,
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.detectIndentation": true,
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"editor.minimap.enabled": true,
"prettier.singleQuote": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"breadcrumbs.enabled": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.labelFormat": "short",
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.osx": "zsh",
"diffEditor.ignoreTrimWhitespace": false,
"window.zoomLevel": -1,
"eslint.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment