20 lines
No EOL
475 B
JSON
20 lines
No EOL
475 B
JSON
{
|
|
"ruff.enable": true,
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"pylint.importStrategy": "fromEnvironment",
|
|
"mypy-type-checker.importStrategy": "fromEnvironment",
|
|
"mypy-type-checker.args": [
|
|
"--config-file=pyproject.toml"
|
|
],
|
|
"pylint.severity": {
|
|
"refactor": "Warning"
|
|
},
|
|
"pylint.args": [
|
|
"--load-plugins", "pylint_pydantic",
|
|
"--rcfile=pylintrc"
|
|
],
|
|
"python.testing.pytestArgs": [
|
|
"tests"
|
|
],
|
|
} |