File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 11{
22 // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
33 // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4-
4+
55 // List of extensions which should be recommended for users of this workspace.
66 "recommendations" : [
77 " ms-vscode.vscode-typescript-tslint-plugin" ,
8- " xaver.clang-format " ,
9- ],
8+ " esbenp.prettier-vscode "
9+ ]
1010}
Original file line number Diff line number Diff line change 11{
2- // Please install https://marketplace.visualstudio.com/items?itemName=xaver.clang-format to take advantage of `clang-format` in VSCode.
3- // (See https://clang.llvm.org/docs/ClangFormat.html for more info `clang-format`.)
4- "clang-format.executable" : " ${workspaceRoot}/node_modules/.bin/clang-format" ,
52 "files.watcherExclude" : {
63 "**/.git/objects/**" : true ,
74 "**/.git/subtree-cache/**" : true ,
118 },
129 "search.exclude" : {
1310 "**/node_modules" : true ,
14- "**/bower_components" : true ,
1511 "**/bazel-out" : true ,
1612 "**/dist" : true ,
1713 },
1814 "git.ignoreLimitWarning" : true ,
15+ "[javascript]" : {
16+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
17+ "editor.formatOnSave" : true
18+ },
19+ "[typescript]" : {
20+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
21+ "editor.formatOnSave" : true
22+ }
1923}
You can’t perform that action at this time.
0 commit comments