-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Adds retry mechanism on failure and debugging support
- Added max_attempts and failed_attempts_backoff_timeout fields to schema - Updated plugin.properties to include EmmyLua Debugger version - Introduced launch configuration for EmmyLua Debugger in VSCode - Enhanced changelog with new features and improvements - Modified Dockerfile to install EmmyLua Debugger - Added custom Busted script for improved testing with EmmyLua Debugger
- Loading branch information
Showing
13 changed files
with
556 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
// 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": "emmylua_new", | ||
"request": "launch", | ||
"name": "EmmyLua New Debug", | ||
"host": "localhost", | ||
"port": 9966, | ||
"ext": [ | ||
".lua", | ||
".lua.txt", | ||
".lua.bytes" | ||
], | ||
"ideConnectDebugger": true, | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.