-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
144 lines (144 loc) · 3.58 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"extensions": {
"recommendations": [
"GraphQL.vscode-graphql",
"bradlc.vscode-tailwindcss",
"bungcip.better-toml",
"charliermarsh.ruff",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"exiasr.hadolint",
"ms-azuretools.vscode-docker",
"ms-python.python",
"sleistner.vscode-fileutils",
"tyriar.sort-lines",
"webben.browserslist",
"webhint.vscode-webhint",
"wix.vscode-import-cost",
"yzhang.markdown-all-in-one",
"zixuanchen.vitest-explorer",
],
"unwantedRecommendations": [],
},
"folders": [
{
"name": "spear-ai/citizen",
"path": ".",
},
{
"name": "spear-ai/commitlint-config",
"path": "packages/commitlint-config",
},
{
"name": "spear-ai/eslint-config",
"path": "packages/eslint-config",
},
{
"name": "spear-ai/dev-image",
"path": "packages/dev-image",
},
{
"name": "spear-ai/npm-package-json-lint-config",
"path": "packages/npm-package-json-lint-config",
},
{
"name": "spear-ai/prettier-config",
"path": "packages/prettier-config",
},
{
"name": "spear-ai/pulumi-policy-pack",
"path": "packages/pulumi-policy-pack",
},
{
"name": "spear-ai/ruff-config",
"path": "packages/ruff-config",
},
{
"name": "spear-ai/sqlfluff-config",
"path": "packages/sqlfluff-config",
},
{
"name": "spear-ai/tsconfig",
"path": "packages/tsconfig",
},
],
"settings": {
"[graphql]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[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",
},
"[python]": {
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit",
},
"editor.defaultFormatter": "charliermarsh.ruff",
"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": [
"graphql",
"javascript",
"javascriptreact",
"json",
"json5",
"jsonc",
"markdown",
"toml",
"typescript",
"typescriptreact",
"yaml",
],
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"python.testing.pytestEnabled": true,
"scss.validate": false,
"tailwindCSS.includeLanguages": {
"typescript": "javascript",
"typescriptreact": "javascript",
},
"terminal.integrated.env.osx": {
"MallocNanoZone": "1",
},
"testing.automaticallyOpenPeekView": "never",
},
}