CodeStandard/configs/vscode_python_settings.json

22 lines
542 B
JSON
Raw Permalink Normal View History

2024-06-07 20:00:25 +03:00
{
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test*.py"
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true
"python.linting.pylintArgs": [
"--max-line-length=120",
"--disable=invalid-name",
"--disable=line-too-long",
"--disable=no-else-return",
"--disable=too-many-return-statements",
"--disable=no-else-break",
"--disable=no-else-continue"
]
}