summaryrefslogtreecommitdiff
path: root/Resources/.vscode
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/.vscode')
-rw-r--r--Resources/.vscode/launch.json34
-rw-r--r--Resources/.vscode/settings.json3
2 files changed, 37 insertions, 0 deletions
diff --git a/Resources/.vscode/launch.json b/Resources/.vscode/launch.json
new file mode 100644
index 0000000..fde4529
--- /dev/null
+++ b/Resources/.vscode/launch.json
@@ -0,0 +1,34 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "lua",
+ "request": "launch",
+ "tag": "normal",
+ "name": "LuaPanda",
+ "description": "通用模式,通常调试项目请选择此模式 | launchVer:3.2.0",
+ "cwd": "${workspaceFolder}",
+ "luaFileExtension": "",
+ "connectionPort": 8818,
+ "stopOnEntry": true,
+ "useCHook": true,
+ "autoPathMode": true
+ },
+ {
+ "type": "lua",
+ "request": "launch",
+ "tag": "independent_file",
+ "name": "LuaPanda-IndependentFile",
+ "description": "独立文件调试模式,使用前请参考文档",
+ "luaPath": "",
+ "packagePath": [],
+ "luaFileExtension": "",
+ "connectionPort": 8820,
+ "stopOnEntry": true,
+ "useCHook": true
+ }
+ ]
+} \ No newline at end of file
diff --git a/Resources/.vscode/settings.json b/Resources/.vscode/settings.json
new file mode 100644
index 0000000..b38d6ec
--- /dev/null
+++ b/Resources/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "lua_analyzer.codeLinting.ignoreErrorCode": "611;612;613;614;542"
+} \ No newline at end of file