Last active
June 28, 2021 16:02
-
-
Save JeffryGonzalez/c169bd7f47b05de205909832a9a3eaaf to your computer and use it in GitHub Desktop.
VS Code Settings for Front End Web 200+
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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, | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use these as the settings for doing Angular work in Visual Studio code.