From 0a238c73427fdfd17417d5a86d771043655de740 Mon Sep 17 00:00:00 2001 From: syokoysn Date: Mon, 18 Jul 2022 13:59:36 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20black=20=E3=81=A8=20flake8=20=E9=81=A9?= =?UTF-8?q?=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .devcontainer/devcontainer.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f81aced..80d094e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,10 +6,18 @@ "terminal.integrated.profiles.linux": { "zsh (login)": { "path": "zsh", - "args": ["-l"] + "args": [ + "-l" + ] } }, - "python.pythonPath": "/usr/local/bin/python" + "python.pythonPath": "/usr/local/bin/python", + "python.linting.enabled": true, + "python.linting.pylintEnabled": false, + "python.linting.flake8Enabled": true, + "python.linting.lintOnSave": true, + "python.formatting.provider": "black", + "editor.formatOnSave": true }, "extensions": [ "ms-python.python",