Skip to content

Instantly share code, notes, and snippets.

@JeffryGonzalez
Created December 10, 2018 16:16
Show Gist options
  • Select an option

  • Save JeffryGonzalez/e3252ff3e476339811d8b51f73df9121 to your computer and use it in GitHub Desktop.

Select an option

Save JeffryGonzalez/e3252ff3e476339811d8b51f73df9121 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings for Angular / JavaScript Development
{
"explorer.openEditors.visible": 0,
"editor.fontSize": 18,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"tslint.autoFixOnSave": true,
"files.autoSave": "onFocusChange",
"typescript.check.npmIsInstalled": true,
"editor.snippetSuggestions": "top",
"workbench.editor.labelFormat": "long",
"workbench.colorTheme": "Nova",
"editor.lineHeight": 28,
"editor.minimap.enabled": false,
"tslint.alwaysShowRuleFailuresAsWarnings": true,
"window.zoomLevel": 0,
"git.enableSmartCommit": true,
"git.autofetch": true,
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#ff0000"
},
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"eslint.autoFixOnSave": true,
"eslint.enable": true,
"typescript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment