fix vscode setting

This commit is contained in:
linsui 2021-06-21 13:08:25 +08:00 committed by Hans-Christoph Steiner
parent 958fd17232
commit 736f244634
1 changed files with 4 additions and 5 deletions

View File

@ -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"
],