i told git to ignore .vscode but it didnt

This commit is contained in:
Lauchmelder 2022-07-06 21:57:37 +02:00
parent 2153cdb3ab
commit 2339302e79

45
.vscode/launch.json vendored
View file

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