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, +}