From 4f44cfff2c0f664da99017b939df03d4193480c2 Mon Sep 17 00:00:00 2001 From: Patrick Neff Date: Mon, 3 Aug 2020 18:37:31 +0200 Subject: [PATCH] Remove python path from vscode settings file --- .gitignore | 13 ++++++++++++- .vscode/settings.json | 8 -------- 2 files changed, 12 insertions(+), 9 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 2333ebb3..6c62e1bf 100644 --- a/.gitignore +++ b/.gitignore @@ -139,4 +139,15 @@ cython_debug/ # Project specific credentials.json -store/* \ No newline at end of file +store/* + +# VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 8d84da0c..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "python.pythonPath": "/home/odie/.virtualenvs/matrix-bot-fiY9M2m2/bin/python", - "python.linting.flake8Enabled": true, - "python.linting.enabled": true, - "python.linting.pylintEnabled": false, - "python.formatting.provider": "yapf", - "python.formatting.blackArgs": ["-l 79"] -}