-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsecond-monitor.code-workspace
101 lines (101 loc) · 3.14 KB
/
second-monitor.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
{
"folders": [
{
"name": "starbeam-docs",
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"node_modules": true,
"docs": true
},
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.wordWrap": "bounded",
"files.associations": {
"tsconfig.*.json": "jsonc"
},
"codeium.enableConfig": {
"*": true
},
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js, ${capture}.ts.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, .npmrc, .markdownlint.json"
},
"explorer.excludeGitIgnore": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"docs": true
},
"stylelint.enable": true,
"[yaml]": {
"editor.insertSpaces": true,
"editor.defaultFormatter": "redhat.vscode-yaml",
"editor.tabSize": 2,
"editor.autoIndent": "keep",
"gitlens.codeLens.scopes": ["document"],
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
}
},
"volar.doctor.checkVueTsc": true,
"volar.vueserver.noProjectReferences": true,
"volar.autoWrapParentheses": true,
"volar.updateImportsOnFileMove.enabled": true,
"volar.doctor.statusBarItem": true,
"volar.vueserver.vitePress.processMdFile": true,
"volar.autoCompleteRefs": true,
"volar.vueserver.textDocumentSync": "incremental",
"volar.vueserver.diagnosticModel": "pull",
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"./packages/api-docs/dist/api.schema.json": "/src/api/**/*.yml"
},
"yaml.trace.server": "messages",
"json.schemas": [
{
"fileMatch": ["src/api/**/$api/*.json", "src/api/**/$api/*.jsonc"],
"url": "./packages/api-docs/dist/api.schema.json"
}
],
"files.trimTrailingWhitespace": false,
"typescript.tsdk": "node_modules/typescript/lib",
"terminal.integrated.fontFamily": "\"ShureTechMono NFM\"",
"terminal.integrated.fontSize": 10,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontWeightBold": "bold",
"workbench.preferredLightColorTheme": "FlatUI Immersed",
"workbench.colorTheme": "Ra Focus",
"window.autoDetectColorScheme": false,
"workbench.preferredDarkColorTheme": "Ra Focus",
"workbench.preferredHighContrastLightColorTheme": "GitHub Light High Contrast"
}
}