From 8878b3b333f8b110fa706eb712667a88758f78f4 Mon Sep 17 00:00:00 2001 From: Jared Nance Date: Mon, 31 Aug 2020 10:17:22 -0700 Subject: [PATCH] Remove .vscode settings from git The hardcoded flake8 path may cause issues with local paths --- .gitignore | 4 +++- .vscode/settings.json | 5 ----- 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index bce94f4..076dde5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.vscode/ + .buildutils # Byte-compiled / optimized / DLL files @@ -124,4 +126,4 @@ venv.bak/ dmypy.json # Pyre type checker -.pyre/ \ No newline at end of file +.pyre/ diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index d5d5902..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "python.linting.flake8Path": "/usr/local/bin/flake8", - "python.linting.flake8Enabled": true, - "python.linting.pylintEnabled": false -}