-
Notifications
You must be signed in to change notification settings - Fork 0
/
svelte-mono.code-workspace
75 lines (75 loc) · 1.65 KB
/
svelte-mono.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
{
"settings": {
"conventionalCommits.lineBreak": "\\n",
"conventionalCommits.promptFooter": false,
"conventionalCommits.promptScopes": true,
"conventionalCommits.scopes": [
"monorepo",
"portfolio",
"svelte-base64",
"shared-ui",
"svelte-color-tools",
"lockfile-converter",
"eslint-config-custom"
],
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.fixAll.eslint": "explicit",
"source.organizeImports": "explicit"
},
"editor.fontFamily": "Hack Nerd Font Mono",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.guides.bracketPairs": true,
"eslint.probe": [
"javascript",
"typescript",
"html",
"markdown",
"svelte"
],
"eslint.validate": [
"typescript",
"svelte"
],
"terminal.integrated.fontFamily": "Hack Nerd Font Mono",
"testing.automaticallyOpenPeekView": "never",
"workbench.colorTheme": "Midnight Codex",
"todo-tree.general.showActivityBarBadge": true,
"todo-tree.general.showIconsInsteadOfTagsInStatusBar": false,
"todo-tree.general.statusBar": "tags",
"todo-tree.filtering.scopes": [
"monorepo",
"portfolio",
"svelte-base64",
"shared-ui",
"svelte-color-tools"
],
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
},
"folders": [
{
"name": "svelte-mono",
"path": "."
},
{
"name": "portfolio",
"path": "apps/portfolio"
},
{
"name": "svelte-base64",
"path": "apps/svelte-base64"
},
{
"name": "shared-ui",
"path": "packages/shared-ui"
},
{
"name": "svelte-color-tools",
"path": "packages/svelte-color-tools"
}
]
}