From d4628e183d572bd81d982e1f8d48157cbde639dd Mon Sep 17 00:00:00 2001 From: Martin Karkowski Date: Fri, 19 Mar 2021 13:18:41 +0100 Subject: [PATCH] Adding hints for Python --- PREPARE_VSCODE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PREPARE_VSCODE.md b/PREPARE_VSCODE.md index 674c126..f224f84 100644 --- a/PREPARE_VSCODE.md +++ b/PREPARE_VSCODE.md @@ -40,6 +40,7 @@ code --install-extension rvest.vs-code-prettier-eslint "source.organizeImports": true } }, - "editor.formatOnSave": true + "editor.formatOnSave": true, + "python.formatting.autopep8Args": ["--ignore", "E402"] // <-- This is important if you are working with ordered python imports } ```