File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change 257
257
# Misc
258
258
/* @ jelbourn
259
259
/.github /** @ jelbourn
260
+ /.vscode /** @ mmalerba
260
261
/src /* @ jelbourn
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ node_modules
26
26
27
27
# IDEs
28
28
/.idea
29
- /.vscode
29
+ /.vscode / launch.json
30
30
/* .iml
31
31
32
32
# misc
Original file line number Diff line number Diff line change
1
+ {
2
+ // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3
+ // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4
+
5
+ // List of extensions which should be recommended for users of this workspace.
6
+ "recommendations" : [
7
+ " ms-vscode.vscode-typescript-tslint-plugin" ,
8
+ " xaver.clang-format" ,
9
+ ],
10
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "[javascript]" : {
3
+ "editor.formatOnSave" : true ,
4
+ },
5
+ "[typescript]" : {
6
+ "editor.formatOnSave" : true ,
7
+ },
8
+ // Please install https://marketplace.visualstudio.com/items?itemName=xaver.clang-format to take advantage of `clang-format` in VSCode.
9
+ // (See https://clang.llvm.org/docs/ClangFormat.html for more info `clang-format`.)
10
+ "clang-format.executable" : " ${workspaceRoot}/node_modules/.bin/clang-format" ,
11
+ "files.watcherExclude" : {
12
+ "**/.git/objects/**" : true ,
13
+ "**/.git/subtree-cache/**" : true ,
14
+ "**/node_modules/**" : true ,
15
+ "**/bazel-out/**" : true ,
16
+ "**/dist/**" : true ,
17
+ },
18
+ "search.exclude" : {
19
+ "**/node_modules" : true ,
20
+ "**/bower_components" : true ,
21
+ "**/bazel-out" : true ,
22
+ "**/dist" : true ,
23
+ },
24
+ "git.ignoreLimitWarning" : true ,
25
+ }
You can’t perform that action at this time.
0 commit comments