mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
22 lines
558 B
JSON
22 lines
558 B
JSON
{
|
|
"python.formatting.blackArgs": [
|
|
"--config=pyproject.toml"
|
|
],
|
|
"python.formatting.provider": "black",
|
|
"python.linting.banditEnabled": true,
|
|
"python.linting.banditArgs": [
|
|
"-ii",
|
|
"--ini=.bandit",
|
|
],
|
|
"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,
|
|
}
|