Files
kontextwerk/.vscode/settings.json
2025-10-02 08:54:03 +02:00

70 lines
2.6 KiB
JSON

{
"eslint.alwaysShowStatus": true,
"tslint.autoFixOnSave": true,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.defaultFormatter": "vscode.markdown-language-features"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveServer.settings.root": "/dist",
"liveServer.settings.file": "spa.html",
"liveServer.settings.port": 5502,
"liveServer.settings.proxy": {
"enable": true,
"baseUri": "/api",
"proxyUri": "https://login.tibicms.de/api/v1"
},
"extensions.ignoreRecommendations": true,
"files.autoSave": "off",
"typescript.tsc.autoDetect": "off",
"npm.autoDetect": "off",
"debug.allowBreakpointsEverywhere": true,
"html.autoClosingTags": false,
"yaml.schemas": {
"./../../cms/tibi-types/schemas/api-config/config.json": "api/config.y*ml",
"./../../cms/tibi-types/schemas/api-config/collection.json": "api/collections/*.y*ml",
"./../../cms/tibi-types/schemas/api-config/field.json": "api/collections/fields/*.y*ml"
},
"yaml.customTags": ["!include scalar"],
"filewatcher.commands": [
{
"match": "/api/.*(\\.ya?ml|js|env)$",
"isAsync": false,
"cmd": "cd ${currentWorkspace} && scripts/reload-local-tibi.sh",
"event": "onFileChange"
}
],
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#00879f",
"activityBar.activeBackground": "#43546e",
"activityBar.background": "#43546e",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#ab748a",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#43546e",
"statusBar.background": "#303c4e",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#43546e",
"statusBarItem.remoteBackground": "#303c4e",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#303c4e",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#303c4e99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.remoteColor": "#303C4E",
"editor.tabCompletion": "on",
"diffEditor.codeLens": true,
"i18n-ally.localesPaths": ["public/ContentBuilder/public/contentbuilder/lang"]
}