hugo-academic-mirror/hugo-blox-builder.code-workspace

89 lines
2.4 KiB
Text
Raw Permalink Normal View History

2023-10-24 22:46:49 +01:00
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true
},
"search.exclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true
},
"files.watcherExclude": {
"**/node_modules/**": true,
"**/public/**": true,
"**/resources/**": true,
"**/pagefind/**": true
},
"explorer.excludeGitIgnore": true,
"workbench.editor.labelFormat": "medium",
"breadcrumbs.enabled": true,
"npm.packageManager": "pnpm",
2025-09-17 10:09:25 +01:00
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "explicit"
},
2025-08-20 23:25:51 +01:00
2025-09-17 10:09:25 +01:00
"[javascript]": { "editor.defaultFormatter": "biomejs.biome" },
"[typescript]": { "editor.defaultFormatter": "biomejs.biome" },
"[json]": { "editor.defaultFormatter": "biomejs.biome" },
"[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.trimTrailingWhitespace": false
},
"[python]": {
"editor.tabSize": 4,
"editor.insertSpaces": true
},
2025-08-20 23:25:51 +01:00
2025-09-17 10:09:25 +01:00
"eslint.workingDirectories": [{ "mode": "auto" }],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
2025-08-20 23:25:51 +01:00
"stylelint.validate": ["css"],
2025-08-20 23:25:51 +01:00
"tailwindCSS.emmetCompletions": true,
2025-08-20 23:25:51 +01:00
2025-09-17 10:09:25 +01:00
"yaml.validate": true,
"prettier.useEditorConfig": true
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"bradlc.vscode-tailwindcss",
"redhat.vscode-yaml",
"tamasfe.even-better-toml",
"DavidAnson.vscode-markdownlint",
"ms-python.python",
"charliermarsh.ruff",
"streetsidesoftware.code-spell-checker",
"mikestead.dotenv",
"eamodio.gitlens",
2025-09-17 10:09:25 +01:00
"bierner.markdown-mermaid",
"EditorConfig.EditorConfig",
"biomejs.biome",
"github.vscode-github-actions",
"timonwong.shellcheck",
"budparr.language-hugo-vscode"
]
}
}