2021-06-18 06:11:39 +02:00
|
|
|
{
|
|
|
|
"python.formatting.blackArgs": [
|
2021-06-21 07:08:25 +02:00
|
|
|
"--config=pyproject.toml"
|
2021-06-18 06:11:39 +02:00
|
|
|
],
|
|
|
|
"python.formatting.provider": "black",
|
|
|
|
"python.linting.banditEnabled": true,
|
|
|
|
"python.linting.banditArgs": [
|
|
|
|
"-ii",
|
2021-06-21 07:08:25 +02:00
|
|
|
"--ini=.bandit",
|
2021-06-18 06:11:39 +02:00
|
|
|
],
|
|
|
|
"python.linting.enabled": true,
|
|
|
|
"python.linting.mypyArgs": [
|
2021-06-21 07:08:25 +02:00
|
|
|
"--config-file=mypy.ini"
|
2021-06-18 06:11:39 +02:00
|
|
|
],
|
|
|
|
"python.linting.mypyEnabled": true,
|
2021-06-21 07:08:25 +02:00
|
|
|
"python.linting.flake8Enabled": true,
|
2021-06-18 06:11:39 +02:00
|
|
|
"python.linting.pylintArgs": [
|
|
|
|
"--rcfile=.pylint-rcfile"
|
|
|
|
],
|
|
|
|
"python.linting.pylintEnabled": true,
|
|
|
|
}
|