File tree 3 files changed +43
-0
lines changed
3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1
1
node_modules /*
2
2
dist /*
3
+
4
+ # From https://www.toptal.com/developers/gitignore/api/visualstudiocode
5
+
6
+ # ## VisualStudioCode ###
7
+ .vscode /*
8
+ ! .vscode /settings.json
9
+ ! .vscode /tasks.json
10
+ ! .vscode /launch.json
11
+ ! .vscode /extensions.json
12
+ ! .vscode /* .code-snippets
13
+
14
+ # Local History for Visual Studio Code
15
+ .history /
16
+
17
+ # Built Visual Studio Code Extensions
18
+ * .vsix
19
+
20
+ # ## VisualStudioCode Patch ###
21
+ # Ignore all local history of files
22
+ .history
23
+ .ionide
24
+
25
+ # Support for Project snippet scope
26
+ .vscode /* .code-snippets
27
+
28
+ # Ignore code-workspaces
29
+ * .code-workspace
30
+
31
+ # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode
Original file line number Diff line number Diff line change
1
+ {
2
+ "recommendations" : [" esbenp.prettier-vscode" ]
3
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // From VSCode 1.67.1, this is the default
3
+ // "editor.bracketPairColorization.enabled": true,
4
+ "editor.guides.bracketPairs" : " active" ,
5
+
6
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
7
+ "editor.formatOnSave" : true ,
8
+
9
+ // VSCode uses same TS version as package
10
+ "typescript.tsdk" : " node_modules/typescript/lib"
11
+ }
You can’t perform that action at this time.
0 commit comments