Update git ignore

This commit is contained in:
Hazem Krimi
2024-03-17 03:29:47 +01:00
parent aa9e2d905b
commit d99316ad07
2 changed files with 1 additions and 45 deletions
+1
View File
@@ -1 +1,2 @@
/target /target
/.vscode
-45
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 'hack-assembler'",
"cargo": {
"args": [
"build",
"--bin=hack-assembler",
"--package=hack-assembler"
],
"filter": {
"name": "hack-assembler",
"kind": "bin"
}
},
"args": ["../rect/RectL.asm"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'hack-assembler'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=hack-assembler",
"--package=hack-assembler"
],
"filter": {
"name": "hack-assembler",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}