-
Notifications
You must be signed in to change notification settings - Fork 16
/
opensphere.code-workspace
107 lines (107 loc) · 2.93 KB
/
opensphere.code-workspace
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"folders": [
{
"name": "Workspace",
"path": "."
},
{
"name": "Projects",
"path": "./workspace"
}
],
"settings": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"eslint.workingDirectories": [
{
"pattern": "./*/"
}
],
"javascript.format.enable": false,
"html.format.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.tslint": true
},
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.maxTokenizationLineLength": 100000,
"editor.minimap.maxColumn": 124,
"editor.minimap.renderCharacters": false,
"editor.renderWhitespace": "boundary",
"editor.rulers": [
120
],
"editor.suggest.localityBonus": true,
"editor.suggest.maxVisibleSuggestions": 15,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.tabCompletion": "on",
"editor.wordWrapColumn": 120,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"files.watcherExclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/.svn": true,
"**/.build": true,
"**/dist": true,
"**/vendor": true,
"**/cypress": true,
"**/tasks": true,
"**/dll": true,
"**/include": true,
"**/lib": true
},
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitDisabledWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressSupportGitLensNotification": false
},
"html.format.wrapAttributes": "auto",
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/.git": true,
"**/.svn": true,
"**/.build": true,
"**/dist": true,
"**/vendor": true,
"**/cypress": true,
"**/tasks": true,
"**/dll": true,
"**/include": true,
"**/lib": true
},
"search.smartCase": true,
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.tabSizing": "shrink",
"workbench.enableExperiments": false,
"workbench.quickOpen.closeOnFocusLost": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.build": true,
"**/.DS_Store": true,
"**/node_modules": true,
"workspace": true
}
}
}