-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
79 lines (79 loc) · 2.11 KB
/
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
72
73
74
75
76
77
78
79
{
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<esc>"
]
}
],
"editor.formatOnSave": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"[javascript]": {
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.tabSize": 2
},
"[typescript]": {
"editor.tabSize": 2
},
"[graphql]": {
"editor.tabSize": 2
},
"editor.minimap.enabled": true,
"explorer.confirmDragAndDrop": false,
"workbench.editor.labelFormat": "short",
"terminal.integrated.rendererType": "dom",
"emmet.excludeLanguages": [
"typescript",
"typescriptreact",
"javascript"
],
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\wsl.exe",
"terminal.integrated.shell.osx": "/usr/local/bin/fish",
"workbench.editor.showTabs": true,
"breadcrumbs.enabled": true,
"files.trimTrailingWhitespace": false,
"workbench.startupEditor": "welcomePage",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.surveys.enabled": false,
"editor.renderWhitespace": "all",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"git.autofetch": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.renderControlCharacters": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.zoomLevel": 0,
"gitlens.hovers.currentLine.over": "line",
"git.confirmSync": false,
"arduino.additionalUrls": [
"http://arduino.esp8266.com/stable/package_esp8266com_index.json"
],
"git.enableCommitSigning": true,
"liveServer.settings.donotShowInfoMsg": true,
"editor.accessibilitySupport": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
]
}