Files
rustdoku/.vscode/launch.json
T
Greg Hellings e4c678833b Move away from numtide
Get rid of the numtide shell, as it doesn't have any good support for
shellHook. Also, directly create the pre-commit check so that we can
leverage its resulting bits in the packages.

We now will have acces to things like pre-commit-config.yaml in the
folder structure
2024-10-20 20:50:49 -05:00

28 lines
799 B
JSON

{
// 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": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'rustdoku'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=rustdoku"
],
"filter": {
"name": "rustdoku",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}