Skip to content

Instantly share code, notes, and snippets.

@JeffryGonzalez
Last active June 28, 2021 16:02
Show Gist options
  • Select an option

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

Select an option

Save JeffryGonzalez/c169bd7f47b05de205909832a9a3eaaf to your computer and use it in GitHub Desktop.
VS Code Settings for Front End Web 200+
{
"editor.linkedEditing": true,
"workbench.editor.wrapTabs": true,
"workbench.editor.decorations.colors": true,
"workbench.editor.decorations.badges": true,
"workbench.tree.indent": 25,
"breadcrumbs.enabled": true,
"html.format.wrapAttributes": "force-aligned",
"explorer.openEditors.visible": 0,
"editor.formatOnSave": true,
"editor.fontLigatures": false,
"files.autoSave": "onFocusChange",
"typescript.check.npmIsInstalled": true,
"editor.snippetSuggestions": "top",
"workbench.editor.labelFormat": "medium",
"editor.minimap.enabled": false,
"window.zoomLevel": 0,
"git.enableSmartCommit": true,
"git.autofetch": true,
"eslint.rules.customizations": [
{
"rule": "*",
"severity": "warn"
}
],
"workbench.colorCustomizations": {
"editorIndentGuide.activeBackground": "#ff0000"
},
"editor.codeActionsOnSave": {
"source.organizeImports": false,
"source.fixAll": true,
"eslint.autoFixOnSave": true /* already set with source.fixAll, but here to document */
},
"typescript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.fontFamily": "monospace",
"workbench.sideBar.location": "right",
"explorer.confirmDelete": false,
"eslint.quiet": true,
}
@JeffryGonzalez

Copy link
Copy Markdown
Author

Use these as the settings for doing Angular work in Visual Studio code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment