remove vscode

This commit is contained in:
Manuel Gugger 2022-08-28 20:27:53 +02:00
parent 0d27bc4753
commit 5cc159e7a3

65
.vscode/launch.json vendored
View File

@ -1,65 +0,0 @@
{
// 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 'actix_admin'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=actix_admin"
],
"filter": {
"name": "actix_admin",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'integration_test_get_resp_is_success'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration_test_get_resp_is_success",
"--package=actix_admin"
],
"filter": {
"name": "integration_test_get_resp_is_success",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'integration_test_post_resp_is_success'",
"cargo": {
"args": [
"test",
"--no-run",
"--test=integration_test_post_resp_is_success",
"--package=actix_admin"
],
"filter": {
"name": "integration_test_post_resp_is_success",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}