From 63f5dabc3ce1ddc2c96950754e4ebab85962fd65 Mon Sep 17 00:00:00 2001 From: Peter Henry Date: Fri, 27 Jul 2018 13:49:35 -0700 Subject: [PATCH] disable whitespace around colon check becaues of this bug: https://github.com/PyCQA/pycodestyle/issues/373 --- vscode/.config/Code - OSS/User/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/.config/Code - OSS/User/settings.json b/vscode/.config/Code - OSS/User/settings.json index 22580e9..acaa385 100644 --- a/vscode/.config/Code - OSS/User/settings.json +++ b/vscode/.config/Code - OSS/User/settings.json @@ -32,7 +32,7 @@ // Python configuration "python.formatting.provider": "black", "python.linting.enabled": true, - "python.linting.flake8Args": ["--max-line-length=88"], + "python.linting.flake8Args": ["--max-line-length=88", "--ignore=E203"], "python.linting.flake8Enabled": true, "python.linting.mypyEnabled": true, "python.venvPath": "~/.virtualenvs",