From 87abb766a455faad3aef7a26189b79f961842a6e Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Tue, 13 Mar 2018 11:27:59 +0100 Subject: [PATCH] Configure VSCode linting --- .vscode/extensions.json | 5 +++++ .vscode/settings.json | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..ba653bcb3 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "ms-python.python" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index b89726116..ca43a3e52 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,10 @@ "files.exclude": { "**/*.pyc": {"when": "$(basename).py"}, "**/__pycache__": true - } + }, + + // Linting + "python.linting.enabled": true, + "python.linting.pylintEnabled": false, + "python.linting.flake8Enabled": true }