🔧 Update gitignore (#18)

Reviewed-on: #18
Co-authored-by: Julius Koskela <julius.koskela@unikie.com>
Co-committed-by: Julius Koskela <julius.koskela@unikie.com>
This commit is contained in:
Julius Koskela 2024-01-06 00:14:25 +00:00 committed by Julius Koskela
parent 84e5cb256a
commit 35d94d5149
Signed by: gitea
GPG Key ID: 84C4D3069B6E109A
2 changed files with 1 additions and 64 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/target /target
/.vscode

64
.vscode/launch.json vendored
View File

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