2023-10-24 22:46:49 +01:00
|
|
|
{
|
2025-08-25 21:16:45 +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,
|
2025-08-30 14:43:37 +01:00
|
|
|
"workbench.editor.labelFormat": "medium",
|
|
|
|
"breadcrumbs.enabled": true,
|
2025-08-25 21:16:45 +01:00
|
|
|
"npm.packageManager": "pnpm",
|
2025-09-17 10:09:25 +01:00
|
|
|
"editor.detectIndentation": false,
|
2025-08-25 21:16:45 +01:00
|
|
|
"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
|
|
|
|
2025-08-25 21:16:45 +01:00
|
|
|
"stylelint.validate": ["css"],
|
2025-08-20 23:25:51 +01:00
|
|
|
|
2025-08-25 21:16:45 +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
|
2025-08-25 21:16:45 +01:00
|
|
|
},
|
|
|
|
"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"
|
2025-08-25 21:16:45 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|