2022-03-16 11:10:30 +03:00
|
|
|
{
|
|
|
|
"folders": [
|
|
|
|
{
|
|
|
|
"path": "packages/server",
|
|
|
|
"name": "🖥️ server"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "packages/frontend",
|
|
|
|
"name": "🪟 frontend"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "packages/preview-service",
|
|
|
|
"name": "🖼️ preview-service"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "packages/viewer",
|
|
|
|
"name": "🔎 viewer"
|
|
|
|
},
|
2022-04-27 15:11:27 +03:00
|
|
|
{
|
|
|
|
"path": "packages/viewer-sandbox",
|
|
|
|
"name": "🚦 viewer-sandbox"
|
|
|
|
},
|
2022-03-16 11:10:30 +03:00
|
|
|
{
|
|
|
|
"path": "packages/fileimport-service",
|
|
|
|
"name": "💾 fileimport-service"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "packages/webhook-service",
|
|
|
|
"name": "✉️ webhook-service"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "packages/objectloader",
|
|
|
|
"name": "🌐 objectloader"
|
2022-04-06 15:58:05 +03:00
|
|
|
},
|
2022-08-03 17:23:39 +03:00
|
|
|
{
|
|
|
|
"path": "utils/helm",
|
|
|
|
"name": "⛵ helm"
|
|
|
|
},
|
2022-04-06 15:58:05 +03:00
|
|
|
{
|
|
|
|
"path": ".",
|
|
|
|
"name": "🏡 root"
|
2022-04-27 15:11:27 +03:00
|
|
|
}
|
2022-03-16 11:10:30 +03:00
|
|
|
],
|
|
|
|
"settings": {
|
2022-04-15 20:49:46 +03:00
|
|
|
// Some settings below are duplicated in root/.vscode, incase the repo is opened without targeting the workspace file
|
2022-03-16 11:10:30 +03:00
|
|
|
// I don't think there's a way to force users to open the project as a workspace always
|
|
|
|
"explorer.confirmDelete": false,
|
|
|
|
"files.associations": {
|
|
|
|
"*.vue": "vue"
|
|
|
|
},
|
|
|
|
"editor.formatOnPaste": true,
|
|
|
|
"editor.multiCursorModifier": "ctrlCmd",
|
|
|
|
"editor.snippetSuggestions": "top",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll.eslint": true
|
|
|
|
},
|
2022-03-16 18:31:53 +03:00
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2022-08-04 15:21:39 +03:00
|
|
|
"search.useParentIgnoreFiles": true,
|
2022-08-11 11:00:01 +03:00
|
|
|
"[html]": {
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
2022-08-18 17:39:55 +03:00
|
|
|
},
|
2022-10-05 15:32:24 +03:00
|
|
|
"files.eol": "\n",
|
|
|
|
"volar.completion.preferredTagNameCase": "kebab",
|
|
|
|
"volar.vueserver.maxOldSpaceSize": 4000
|
2022-03-16 11:10:30 +03:00
|
|
|
},
|
|
|
|
"extensions": {
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
|
|
|
|
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
|
|
|
|
|
|
|
|
// List of extensions which should be recommended for users of this workspace.
|
2022-03-16 18:31:53 +03:00
|
|
|
"recommendations": [
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"octref.vetur",
|
|
|
|
"hbenl.vscode-mocha-test-adapter",
|
|
|
|
"ryanluker.vscode-coverage-gutters"
|
|
|
|
],
|
2022-03-16 11:10:30 +03:00
|
|
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
|
|
|
"unwantedRecommendations": []
|
|
|
|
}
|
|
|
|
}
|