chore(vscode): force load hotreload in launch & debug configuration
Some checks failed
Actions / Build Documentation (MkDocs) (push) Successful in 35s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 40s

This commit is contained in:
cswimr 2025-01-26 01:08:06 +00:00
parent 1677412b56
commit e5210420cb
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

4
.vscode/launch.json vendored
View file

@ -5,11 +5,11 @@
"version": "0.2.0",
"configurations": [
{
"name": "Red-DiscordBot",
"name": "Python: Red-DiscordBot",
"type": "debugpy",
"request": "launch",
"module": "redbot",
"args": ["local", "--dev", "-vvv"]
"args": ["local", "--dev", "-vvv", "--load-cogs=hotreload"]
}
]
}