Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/neko.code-workspace

48 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2020-01-13 21:05:38 +13:00
{
"folders": [
{
"path": "server"
},
{
"path": "client"
},
{
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"files.encoding": "utf8",
"files.eol": "\n",
"typescript.tsdk": "./client/node_modules/typescript/lib",
"todo-tree.filtering.excludeGlobs": ["**/node_modules/**"],
"eslint.validate": [
"vue",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
],
"vetur.validation.template": true,
"vetur.useWorkspaceDependencies": true,
"remote.extensionKind": {
"ms-azuretools.vscode-docker": "ui"
},
"remote.containers.defaultExtensions": [
"ms-vscode.go",
"octref.vetur",
2020-02-03 11:48:23 +13:00
"ms-vscode.cpptools",
2020-01-13 21:05:38 +13:00
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"ms-vscode-remote.vscode-remote-extensionpack",
"ms-vscode-remote.remote-containers",
"ms-azuretools.vscode-docker",
"editorconfig.editorconfig",
"gruntfuggly.todo-tree",
2020-02-03 11:48:23 +13:00
"eamodio.gitlens",
"swyphcosmo.spellchecker"
]
2020-01-13 21:05:38 +13:00
}
}