diff --git a/.gitignore b/.gitignore index 416d8e2..3c301ea 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ **/*.rs.bk .build .idea -.swiftpm \ No newline at end of file +.swiftpm +.vscode \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 4a0e29a..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,50 +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 parser tests", - "cargo": { - "args": ["test", "--no-run", "--package=parser"], - "filter": { - "name": "parser", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug asset-catalog tests", - "cargo": { - "args": ["test", "--no-run", "--package=asset-catalog"], - "filter": { - "name": "asset_catalog", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - }, - { - "type": "lldb", - "request": "launch", - "name": "Debug swift-gen tests", - "cargo": { - "args": ["test", "--no-run", "--package=swift-gen"], - "filter": { - "name": "swift_gen", - "kind": "test" - } - }, - "args": [], - "cwd": "${workspaceFolder}" - } - ] -}