remove vscode folder

This commit is contained in:
mux 2024-08-12 12:05:37 +02:00
parent 1ff2c2120b
commit a627af3b25
2 changed files with 1 additions and 72 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/target
Cargo.lock
.vs-code

72
.vscode/launch.json vendored
View File

@ -1,72 +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": "Launch",
"program": "${workspaceFolder}/<program>",
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'Uno'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=Uno"
],
"filter": {
"name": "Uno",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'Uno'",
"cargo": {
"args": [
"build",
"--bin=Uno",
"--package=Uno"
],
"filter": {
"name": "Uno",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'Uno'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=Uno",
"--package=Uno"
],
"filter": {
"name": "Uno",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}