Ignore vscode

This commit is contained in:
Natsu Kagami 2020-09-07 02:08:15 -04:00
parent 5f08845d88
commit c672a8836c
Signed by: nki
GPG key ID: 73376E117CD20735
2 changed files with 1 additions and 64 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@ target
.env
*.yaml
cargo-remote
.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 'youmubot-osu'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=youmubot-osu"
],
"filter": {
"name": "youmubot-osu",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'youmubot'",
"cargo": {
"args": [
"build",
"--bin=youmubot",
"--package=youmubot"
],
"filter": {
"name": "youmubot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'youmubot'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=youmubot",
"--package=youmubot"
],
"filter": {
"name": "youmubot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}