-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
101 lines (101 loc) · 2.53 KB
/
workspace.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
{
"extensions": {
"recommendations": [
"bungcip.better-toml",
"dbaeumer.vscode-eslint",
"dorzey.vscode-sqlfluff",
"esbenp.prettier-vscode",
"ms-azuretools.vscode-docker",
"sleistner.vscode-fileutils",
"tyriar.sort-lines",
"wix.vscode-import-cost",
"yzhang.markdown-all-in-one",
],
"unwantedRecommendations": [],
},
"folders": [
{
"name": "spear-ai",
"path": ".",
},
{
"name": "spear-ai/grafserv-next-server",
"path": "packages/grafserv-next-server",
},
{
"name": "spear-ai/graphile-sort-schema-plugin",
"path": "packages/graphile-sort-schema-plugin",
},
{
"name": "spear-ai/example-postgraphile-api",
"path": "packages/example-postgraphile-api",
},
],
"settings": {
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[json5]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[sql]": {
"editor.defaultFormatter": "dorzey.vscode-sqlfluff",
"editor.tabSize": 4,
},
"[toml]": {
"editor.tabSize": 2,
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
},
"editor.autoClosingQuotes": "always",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
},
"editor.formatOnSave": true,
"editor.quickSuggestions": {
"strings": true,
},
"eslint.experimental.useFlatConfig": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"json",
"json5",
"jsonc",
"markdown",
"toml",
"typescript",
"typescriptreact",
"yaml",
],
"files.associations": {
"*.css": "tailwindcss",
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"sqlfluff.executablePath": "${workspaceFolder}/.venv/bin/sqlfluff",
"sqlfluff.format.enabled": true,
"sqlfluff.linter.run": "onSave",
},
}