-
Notifications
You must be signed in to change notification settings - Fork 0
/
vscode-macos-settings.json
63 lines (63 loc) · 2.09 KB
/
vscode-macos-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
{
"css.validate": false,
"editor.cursorBlinking": "phase",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "none",
"editor.wordWrap": "on",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"explorer.confirmDelete": false,
"explorer.openEditors.visible": 0,
"extensions.autoUpdate": true,
"files.associations": {
"*.js": "javascriptreact",
".gitignore": "gitconfig"
},
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true
},
"files.trimTrailingWhitespace": true,
"javascript.validate.enable": false,
"scss.validate": false,
"sync.askGistName": false,
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.forceDownload": false,
"sync.gist": "339bca3bd731c09f4f0db79f70ab17f9",
"sync.host": "",
"sync.lastDownload": "2017-11-07T20:39:17.381Z",
"sync.lastUpload": "2018-07-30T06:38:35.763Z",
"sync.pathPrefix": "",
"sync.quietSync": false,
"gitlens.advanced.messages": {
"suppressFileNotUnderSourceControlWarning": true,
"suppressNoRepositoryWarning": true,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": true
},
"javascript.format.enable": false,
"git.autofetch": true,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"flow.pathToFlow": "${workspaceRoot}/node_modules/.bin/flow",
"terminal.integrated.cursorBlinking": true,
"diffEditor.ignoreTrimWhitespace": true,
"eslint.packageManager": "yarn",
"editor.tabSize": 2,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "never",
"breadcrumbs.enabled": true,
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 0,
"workbench.colorTheme": "Night Owl"
}