1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-14 21:10:09 +02:00
fdroidserver/.vscode/settings.json

22 lines
558 B
JSON
Raw Normal View History

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