You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Ignore exceptions based on class name (#882)
* Add possibility to ignore exceptions based on class name
* Add ignore exception test
* Update readme and comments
* Fix test error
* Add package.json definition, renamed setting to ignoreExceptions, fix tests.
* Changelog.
---------
Co-authored-by: Damjan Cvetko <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,7 @@ More general information on debugging with VS Code can be found on https://code.
76
76
-`pathMappings`: A list of server paths mapping to the local source paths on your machine, see "Remote Host Debugging" below
77
77
-`log`: Whether to log all communication between VS Code and the adapter to the debug console. See _Troubleshooting_ further down.
78
78
-`ignore`: An optional array of glob patterns that errors should be ignored from (for example `**/vendor/**/*.php`)
79
+
-`ignoreExceptions`: An optional array of exception class names that should be ignored (for example `BaseException`)
79
80
-`skipFiles`: An array of glob patterns, to skip when debugging. Star patterns and negations are allowed, for example, `**/vendor/**` or `!**/vendor/my-module/**`.
80
81
-`maxConnections`: Accept only this number of parallel debugging sessions. Additional connections will be dropped and their execution will continue without debugging.
0 commit comments