diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/extensions.json | 2 | ||||
-rw-r--r-- | .vscode/settings.json | 5 | ||||
-rw-r--r-- | .vscode/tasks.json | 35 |
3 files changed, 25 insertions, 17 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 28a4c8d3ff..2b4b837a24 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -5,7 +5,7 @@ "xaver.clang-format", "bbenoist.doxygen", "ms-vscode.cpptools", - "twxs.cmake", + "ms-vscode.cmake-tools", "mhutchie.git-graph", "github.vscode-pull-request-github", "eamodio.gitlens", diff --git a/.vscode/settings.json b/.vscode/settings.json index d3250c271d..70f526afc6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -115,8 +115,5 @@ "xutility": "cpp", "*.ipp": "cpp", "resumable": "cpp" - }, - "deno.enable": true, - "deno.path": "deps/deno/bin/deno", - "deno.lint": true + } } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index fab16be001..c22c4f535f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -13,18 +13,7 @@ "problemMatcher": [] }, { - "label": "AzerothCore: Import/update database", - "type": "shell", - "command": "./acore.sh db-assembler import-all", - "group": "build", - "presentation": { - "reveal": "always", - "panel": "new" - }, - "problemMatcher": [] - }, - { - "label": "AzerothCore: download client-data", + "label": "AzerothCore: Download client-data", "type": "shell", "command": "./acore.sh client-data", "group": "none", @@ -60,6 +49,28 @@ "problemMatcher": [] }, { + "label": "AzerothCore: Check codestyle cpp", + "type": "shell", + "command": "python apps/codestyle/codestyle-cpp.py", + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { + "label": "AzerothCore: Check codestyle sql", + "type": "shell", + "command": "python apps/codestyle/codestyle-sql.py", + "group": "none", + "presentation": { + "reveal": "always", + "panel": "new" + }, + "problemMatcher": [] + }, + { "label": "AzerothCore: Run authserver (restarter)", "type": "shell", "command": "./acore.sh run-authserver", |