chore(repo): add vscode run and debug configuration
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 38s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 42s

This commit is contained in:
cswimr 2025-01-24 23:12:52 +00:00
parent a04f1ddc6e
commit d910b0f4e1
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// 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": [
{
"name": "Red-DiscordBot",
"type": "debugpy",
"request": "launch",
"module": "redbot",
"args": ["local"]
}
]
}