-
Notifications
You must be signed in to change notification settings - Fork 0
/
fullstacked.code-workspace
119 lines (119 loc) · 2.88 KB
/
fullstacked.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
108
109
110
111
112
113
114
115
116
117
118
119
{
"folders": [
{
"path": ".",
"name": "Root (Fullstacked)"
},
{
"path": "./api",
"name": "API"
},
{
"path": "./client",
"name": "Web Client"
}
],
"settings": {
"window.title": "${rootNameShort}${separator}${folderName}${separator}${appName}",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit"
},
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
},
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
},
"files.associations": {
"router.ts": "typescriptreact"
},
"git.pullTags": false,
"svelte.plugin.css.diagnostics.enable": false,
"typescript.tsdk": "Root (Fullstacked)/node_modules/typescript/lib",
"vitest.commandLine": "pnpm exec vitest --config tests/.vitest/vitest.config.all.ts",
"vitest.enable": true,
"vitest.debugExclude": [
"**/node_modules/**",
"**/dist/**",
"**/cypress/**",
"**/.{idea,git,cache,output,temp}/**",
"**/*.browser.{test,spec}.{js,ts}"
],
"sqltools.connections": [
{
"previewLimit": 50,
"server": "127.0.0.1",
"port": 5432,
"driver": "PostgreSQL",
"name": "Dev DB",
"database": "postgres",
"username": "postgres",
"password": "postgres",
"group": "Dev Container"
},
{
"previewLimit": 50,
"server": "127.0.0.1",
"port": 5432,
"driver": "PostgreSQL",
"name": "Tests DB",
"database": "tests",
"username": "postgres",
"password": "postgres",
"group": "Dev Container"
}
],
"eslint.validate": [
"javascript",
"typescript",
"svelte"
],
"i18n-ally.namespace": true,
"i18n-ally.pathMatcher": "{locale}/{namespaces}.json",
"i18n-ally.indent": 4,
"i18n-ally.tabStyle": "tab",
"i18n-ally.keystyle": "nested",
"i18n-ally.regex.key": "[\\w\\d\\. \\(\\)\\-\\[\\]\\/:]*?",
"i18n-ally.localesPaths": [
"api/src/i18n",
"client/src/i18n",
],
"triggerTaskOnSave.tasks": {
"format prisma file": [
"**/schema.prisma",
],
},
"git-blame.gitWebUrl": "https://github.com/ved-websites/fullstacked/commit/$ID"
}
}