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 1
1
{
2
2
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
3
// Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4
-
4
+
5
5
// List of extensions which should be recommended for users of this workspace.
6
6
"recommendations" : [
7
7
" ms-vscode.vscode-typescript-tslint-plugin" ,
8
- " xaver.clang-format " ,
9
- ],
8
+ " esbenp.prettier-vscode "
9
+ ]
10
10
}
Original file line number Diff line number Diff line change 1
1
{
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" ,
5
2
"files.watcherExclude" : {
6
3
"**/.git/objects/**" : true ,
7
4
"**/.git/subtree-cache/**" : true ,
11
8
},
12
9
"search.exclude" : {
13
10
"**/node_modules" : true ,
14
- "**/bower_components" : true ,
15
11
"**/bazel-out" : true ,
16
12
"**/dist" : true ,
17
13
},
18
14
"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
+ }
19
23
}
You can’t perform that action at this time.
0 commit comments