From 6b1c5bae0f4c66c8e347270eda3dbf2459d3a524 Mon Sep 17 00:00:00 2001 From: proletarius101 Date: Sat, 30 Dec 2023 15:30:10 +0800 Subject: [PATCH] chore: revert repository vscode settings --- .vscode/settings.json | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 154dce4a..da31cd7f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,20 @@ "python.formatting.blackArgs": [ "--config=pyproject.toml" ], - "python.analysis.typeCheckingMode": "basic", - "conventionalCommits.scopes": [ - "deploy" + "python.formatting.provider": "black", + "python.linting.banditEnabled": true, + "python.linting.banditArgs": [ + "-ii", + "--ini=.bandit", ], -} \ No newline at end of file + "python.linting.enabled": true, + "python.linting.mypyArgs": [ + "--config-file=mypy.ini" + ], + "python.linting.mypyEnabled": true, + "python.linting.flake8Enabled": true, + "python.linting.pylintArgs": [ + "--rcfile=.pylint-rcfile" + ], + "python.linting.pylintEnabled": true, +}