May 2018
Intermediate to advanced
512 pages
11h 3m
English
You can share such settings with your coworkers by creating a .vscode folder in the root of your project directory and placing a settings.json file in it. If you commit this file to the repository, everyone will share the same IDE experience. Unfortunately, individuals aren't able to override these settings with their own local preferences, so ensure that shared settings are minimal and are agreed upon as a team norm.
Here are the customizations that I use for an optimal, battery-life conscious Angular development experience:
.vscode/settings.json{ "editor.tabSize": 2, "editor.rulers": [90, 140], "files.trimTrailingWhitespace": true, "files.autoSave": "onFocusChange", "editor.cursorBlinking": "solid", "workbench.iconTheme": "material-icon-theme", ...Read now
Unlock full access