summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorJelle Meeus <sogladev@gmail.com>2025-06-17 22:26:17 +0200
committerGitHub <noreply@github.com>2025-06-17 21:26:17 +0100
commit4d2fe013fd4f18f2f75cc74dd91f0b9a8ff1cac7 (patch)
treee922634035566b2fb568b407cd82d6b4883c2968 /.vscode
parent4f44add274684b5137c6008279c900075831a5fa (diff)
chore(vscode): update extensions, settings, tasks (#22200)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json2
-rw-r--r--.vscode/settings.json5
-rw-r--r--.vscode/tasks.json35
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",