Created
February 11, 2019 10:33
-
-
Save KarolinaCzo/5c2d4f793dde63f9b47dd89f8c461731 to your computer and use it in GitHub Desktop.
Instructions for preparing a VisualStudio configuration file for a project
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
To prepare a list of VisualStudioCode extensions on the Fedora 29 system invoke the console: | |
ls ~/.vscode/extensions/ > ~/extensions | |
The file with extensions will be saved in the Home Catalog. | |
List of extensions for Vikijob: | |
angular.ng-template-0.1.11 | |
christian-kohler.path-intellisense-1.4.2 | |
cyrilletuzi.angular-schematics-1.16.0 | |
davidbabel.vscode-simpler-icons-1.6.5 | |
doggy8088.angular-extension-pack-7.0.0 | |
donjayamanne.githistory-0.4.6 | |
EditorConfig.editorconfig-0.12.4 | |
eg2.tslint-1.0.42 | |
esbenp.prettier-vscode-1.8.1 | |
formulahendry.auto-rename-tag-0.0.15 | |
infinity1207.angular2-switcher-0.2.0 | |
joelday.docthis-0.7.1 | |
johnpapa.angular2-7.0.1 | |
krizzdewizz.refactorix-0.3.6 | |
MariusAlchimavicius.json-to-ts-1.5.5 | |
mikael.angular-beastcode-7.2.2 | |
ms-vscode.cpptools-0.21.0 | |
ms-vscode.typescript-javascript-grammar-0.0.49 | |
quicktype.quicktype-12.0.46 | |
robinbentley.sass-indented-1.4.9 | |
steoates.autoimport-1.5.3 | |
stringham.move-ts-1.11.3 | |
wayou.vscode-todo-highlight-1.0.4 | |
xabikos.javascriptsnippets-1. | |
Instructions for preparing a configuration file for a project: | |
https://code.visualstudio.com/docs/editor/extension-gallery#_workspace-recommended-extensions | |
Next, in the directory: project_name>frontend>.vscode, place the extensions.json file formatted this way: | |
{ | |
"recommendations": [ | |
"angular.ng-template", | |
"christian-kohler.path-intellisense", | |
"cyrilletuzi.angular-schematics", | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment