-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathhugoblox.code-workspace
More file actions
120 lines (115 loc) · 3.33 KB
/
hugoblox.code-workspace
File metadata and controls
120 lines (115 loc) · 3.33 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
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.trimFinalNewlines": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"yaml.format.enable": false,
"files.exclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true,
"**/dist/**": true,
"hugo_stats.json": true
},
"search.exclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true,
"**/dist/**": true,
"hugo_stats.json": true
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true,
"**/dist/**": true,
"hugo_stats.json": true
},
"explorer.excludeGitIgnore": false,
"workbench.editor.labelFormat": "medium",
"breadcrumbs.enabled": true,
"npm.packageManager": "pnpm",
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.defaultFormatter": null,
"editor.codeActionsOnSave": {
"source.fixAll.biome": "explicit"
},
"[javascript]": { "editor.defaultFormatter": "biomejs.biome" },
"[javascriptreact]": { "editor.defaultFormatter": "biomejs.biome" },
"[typescript]": { "editor.defaultFormatter": "biomejs.biome" },
"[typescriptreact]": { "editor.defaultFormatter": "biomejs.biome" },
"[json]": { "editor.defaultFormatter": "biomejs.biome" },
"[jsonc]": { "editor.defaultFormatter": "biomejs.biome" },
"[css]": { "editor.defaultFormatter": "biomejs.biome" },
"[markdown]": {
"editor.defaultFormatter": "prettier.prettier-vscode",
"files.trimTrailingWhitespace": false
},
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.defaultFormatter": "charliermarsh.ruff"
},
"[yaml]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"files.associations": {
"**/layouts/**/*.html": "hugo",
"**/layouts/**/*.htm": "hugo",
"modules/**/*.html": "hugo",
"modules/**/*.htm": "hugo",
"templates/**/*.html": "hugo",
"templates/**/*.htm": "hugo",
"test/**/*.html": "hugo",
"test/**/*.htm": "hugo"
},
"[hugo]": {
"editor.formatOnSave": false,
"editor.defaultFormatter": null
},
"emmet.excludeLanguages": [
"hugo"
],
"html.format.enable": false,
"biome.formatter.enabled": false,
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.includeLanguages": {
"hugo": "html"
},
"tailwindCSS.experimental.classRegex": [
":class\\s*=\\s*\"([^\"]*)\"",
"x-bind:class\\s*=\\s*\"([^\"]*)\""
],
"yaml.validate": true,
"[html]": {
"editor.defaultFormatter": "prettier.prettier-vscode"
},
"tailwindCSS.classAttributes": ["class", "className"]
},
"extensions": {
"recommendations": [
"hugoblox.hugo",
"biomejs.biome",
"prettier.prettier-vscode",
"bradlc.vscode-tailwindcss",
"tamasfe.even-better-toml",
"redhat.vscode-yaml",
"DavidAnson.vscode-markdownlint",
"mikestead.dotenv",
"eamodio.gitlens",
"charliermarsh.ruff"
]
}
}