Skip to content

Instantly share code, notes, and snippets.

@garthtee
Created September 6, 2020 14:27
Show Gist options
  • Save garthtee/abb0c83402d69a272c0211b0240f1353 to your computer and use it in GitHub Desktop.
Save garthtee/abb0c83402d69a272c0211b0240f1353 to your computer and use it in GitHub Desktop.
My VSCode settings for developing Javascript
{
"window.zoomLevel": 1,
"workbench.iconTheme": "material-icon-theme",
"editor.tabSize": 2,
"editor.fontSize": 14,
"terminal.integrated.fontSize": 14,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
"eslint.alwaysShowStatus": true,
"git.autofetch": true,
"javascript.validate.enable": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"typescriptreact"
],
"diffEditor.ignoreTrimWhitespace": false,
"todo-tree.tree.showScanModeButton": false,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"cSpell.userWords": [
"Formik"
],
"workbench.editor.enablePreview": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment