From 0212e6b2cadbb9059e0387edb4573b63963f9909 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Tue, 29 Mar 2022 04:15:47 +0000 Subject: [PATCH] pylint now uses tab indent --- .devcontainer/devcontainer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e8c7a57..255c0be 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,9 +9,10 @@ "python.linting.enabled": true, "python.linting.pylintEnabled": true, "python.linting.pylintPath": "/usr/local/bin/pylint", + "python.linting.pylintArgs": ["--indent-string", "\t"], "python.testing.pytestPath": "/usr/local/bin/pytest", - "editor.tabSize": 4, - "editor.insertSpaces": false + "editor.tabSize": 4, + "editor.insertSpaces": false }, "extensions": [ "mhutchie.git-graph",