From 736f244634ee328e26bf30a8e1489adc58b5e298 Mon Sep 17 00:00:00 2001 From: linsui Date: Mon, 21 Jun 2021 13:08:25 +0800 Subject: [PATCH] fix vscode setting --- .vscode/settings.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 6d3b59a0..da31cd7f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,20 +1,19 @@ { "python.formatting.blackArgs": [ - "--config pyproject.toml" + "--config=pyproject.toml" ], "python.formatting.provider": "black", "python.linting.banditEnabled": true, "python.linting.banditArgs": [ - "-r", "-ii", - "--ini .bandit", + "--ini=.bandit", ], "python.linting.enabled": true, "python.linting.mypyArgs": [ - "--config-file mypy.ini" + "--config-file=mypy.ini" ], "python.linting.mypyEnabled": true, - "python.linting.pycodestyleEnabled": true, + "python.linting.flake8Enabled": true, "python.linting.pylintArgs": [ "--rcfile=.pylint-rcfile" ],