chore: remove .vscode

Former-commit-id: fd72a8b6d0352b34ec8b70c0986619aaf17c371f
Former-commit-id: af6daaf115baef56a853f23cb9ff7e9e35b458a7
This commit is contained in:
Muhammad Nauman Raza 2024-03-23 20:22:11 +00:00
parent 61a5e1ea95
commit e097edd5d6
2 changed files with 0 additions and 190 deletions

31
.vscode/launch.json vendored
View file

@ -1,31 +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": [
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/target/debug/rba-sdl2.exe",
"args": ["--skip-bios"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true
},
{
"type": "lldb",
"request": "launch",
"name": "Debug the debugger",
"sourceLanguages": ["rust"],
"program": "${workspaceFolder}/target/debug/main",
"args": ["debug", "-g", "rom.gba"],
"cwd": "${workspaceFolder}",
"terminal": "integrated"
}
]
}

159
.vscode/tasks.json vendored
View file

@ -1,159 +0,0 @@
// Available variables which can be used inside of strings.
// ${workspaceRoot}: the root folder of the team
// ${file}: the current opened file
// ${fileBasename}: the current opened file's basename
// ${fileDirname}: the current opened file's dirname
// ${fileExtname}: the current opened file's extension
// ${cwd}: the current working directory of the spawned process
{
"version": "2.0.0",
"command": "cargo",
"tasks": [
{
"label": "build",
"type": "shell",
"args": [
"build",
"-v"
],
"problemMatcher": [
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
}
],
"group": "build"
},
{
"label": "clean",
"type": "shell",
"args": [
"clean"
],
"problemMatcher": []
},
{
"label": "run",
"type": "shell",
"args": [
"run",
"-v"
],
"problemMatcher": [
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
}
],
"group": "build"
},
{
"label": "test",
"type": "shell",
"args": [
"test"
],
"problemMatcher": [
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
},
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"severity": "error",
"pattern": {
"regexp": "^.*panicked\\s+at\\s+'(.*)',\\s+(.*):(\\d+)$",
"message": 1,
"file": 2,
"line": 3
}
}
],
"group": "test"
},
{
"label": "bench",
"type": "shell",
"args": [
"bench"
],
"problemMatcher": [
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(\\d+):(\\d+)\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"endLine": 4,
"endColumn": 5,
"severity": 6,
"message": 7
}
},
{
"owner": "rust",
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"severity": "error",
"pattern": {
"regexp": "^.*panicked\\s+at\\s+'(.*)',\\s+(.*):(\\d+)$",
"message": 1,
"file": 2,
"line": 3
}
}
],
"group": "test"
}
]
}