-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdo-we-deploy.code-workspace
More file actions
83 lines (83 loc) · 2.66 KB
/
do-we-deploy.code-workspace
File metadata and controls
83 lines (83 loc) · 2.66 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.associations": {
"*.css": "tailwindcss"
},
"prettier.requireConfig": true,
"tailwindCSS.classFunctions": ["cva", "cx"],
"tailwindCSS.includeLanguages": {
"typescript": "javascript",
"typescriptreact": "javascriptreact"
},
"typescript.preferences.preferTypeOnlyAutoImports": true,
"yaml.schemas": {
"https://www.schemastore.org/dependabot-2.0.json": "file:///home/krake/do-we-deploy/.github/dependabot.yml"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features",
"editor.tabSize": 4
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 4
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.renderWhitespace": "all"
}
},
"extensions": {
"recommendations": [
"EditorConfig.EditorConfig",
"usernamehw.errorlens",
"mhutchie.git-graph",
"github.vscode-github-actions",
"esbenp.prettier-vscode",
"formulahendry.auto-rename-tag",
"bradlc.vscode-tailwindcss",
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"redhat.vscode-yaml",
"VisualStudioExptTeam.vscodeintellicode",
"VisualStudioExptTeam.intellicode-api-usage-examples",
"ms-vscode-remote.remote-containers",
"dracula-theme.theme-dracula",
"PKief.material-icon-theme",
"oxc.oxc-vscode",
"wix.vscode-import-cost",
"github.copilot-chat",
"github.copilot",
"vitest.explorer",
"biomejs.biome"
]
}
}