diff options
author | Anthony Wang | 2021-02-09 16:32:53 -0600 |
---|---|---|
committer | Anthony Wang | 2021-02-09 16:32:53 -0600 |
commit | 7c41e915c9c1017239d8f998808b61938f842521 (patch) | |
tree | 9705bd2155d20d31064b6dd3f6e8d634460dcb96 | |
parent | e2177998957ba3c74b2bc7508522d2dfa42d663e (diff) |
Actually remove vscode stuff
-rw-r--r-- | .vscode/launch.json | 24 | ||||
-rw-r--r-- | .vscode/settings.json | 6 | ||||
-rw-r--r-- | .vscode/tasks.json | 20 |
3 files changed, 0 insertions, 50 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 46eb2cf..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,24 +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": "Python: Current File", - "type": "python", - "request": "launch", - "program": "${file}", - "console": "integratedTerminal" - }, - { - "name": "Debug", - "type": "gdb", - "request": "launch", - "target": "${fileDirname}/${fileBasenameNoExtension}", - "cwd": "${workspaceRoot}", - "valuesFormatting": "prettyPrinters", - "preLaunchTask": "g++ build active file" - } - ] -}
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 76b225b..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "python.pythonPath": "venv/bin/python", - "python.linting.pylintEnabled": true, - "python.linting.enabled": true, - "python.linting.pylintPath": "./venv/bin/pylint" -}
\ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 8eb29dd..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "tasks": [ - { - "type": "shell", - "label": "g++ build active file", - "command": "/usr/bin/g++", - "args": ["-g3", "${file}", "-o", "${fileDirname}/${fileBasenameNoExtension}"], - "options": { - "cwd": "/usr/bin" - }, - "group": { - "kind": "build", - "isDefault": true - } - } - ] -}
\ No newline at end of file |