-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-settings.json
71 lines (71 loc) · 1.99 KB
/
vscode-settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"files.associations": {
".nycrc": "json"
},
"explorer.autoReveal": false,
"explorer.confirmDelete": false,
"git.autofetch": true,
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"yaml.format.bracketSpacing": false,
"explorer.openEditors.visible": 0,
"search.exclude": {
"**/.git": true,
"**/node_modules/": true,
"**/build/": true,
"**/dist/": true,
"**/.gradle/": true,
"**/bin/": true,
"**/__snapshots__": true,
"**/coverage/": true
},
"window.zoomLevel": 0,
"git.confirmSync": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"explorer.confirmDragAndDrop": false,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"editor.minimap.enabled": true,
"editor.renderWhitespace": "none",
"editor.renderControlCharacters": false,
"files.exclude": {
"**/.git": true,
"**/.gradle": true,
"**/bin": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"**/__snapshots__": true,
"**/coverage": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/build/": true,
"**/dist/": true,
"**/.gradle/": true,
"**/bin/": true,
"**/__snapshots__": true,
"**/coverage/": true
},
"workbench.startupEditor": "newUntitledFile",
"editor.suggestSelection": "first",
"editor.fontLigatures": true,
"editor.fontFamily": "FiraCode-Retina, Menlo, Monaco, 'Courier New', monospace",
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.ignoreMissingGitWarning": true,
"javascript.updateImportsOnFileMove.enabled": "always"
}