mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 17:00:12 +01:00
23 lines
577 B
JSON
23 lines
577 B
JSON
|
{
|
||
|
"python.formatting.blackArgs": [
|
||
|
"--config pyproject.toml"
|
||
|
],
|
||
|
"python.formatting.provider": "black",
|
||
|
"python.linting.banditEnabled": true,
|
||
|
"python.linting.banditArgs": [
|
||
|
"-r",
|
||
|
"-ii",
|
||
|
"--ini .bandit",
|
||
|
],
|
||
|
"python.linting.enabled": true,
|
||
|
"python.linting.mypyArgs": [
|
||
|
"--config-file mypy.ini"
|
||
|
],
|
||
|
"python.linting.mypyEnabled": true,
|
||
|
"python.linting.pycodestyleEnabled": true,
|
||
|
"python.linting.pylintArgs": [
|
||
|
"--rcfile=.pylint-rcfile"
|
||
|
],
|
||
|
"python.linting.pylintEnabled": true,
|
||
|
}
|