mirror of
https://github.com/MetaProvide/talked.git
synced 2025-05-17 14:42:14 +00:00
18 lines
677 B
JSON
18 lines
677 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"python.formatting.blackPath": ".venv/bin/black",
|
|
"python.linting.flake8Path": ".venv/bin/flake8",
|
|
"python.linting.mypyEnabled": false,
|
|
"python.linting.mypyPath": ".venv/bin/mypy",
|
|
"python.testing.pytestPath": ".venv/bin/pytest",
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.pylintPath": ".venv/bin/pylint",
|
|
"python.linting.banditPath": ".venv/bin/bandit",
|
|
"python.formatting.provider": "black",
|
|
"python.analysis.typeCheckingMode": "off",
|
|
"python.analysis.extraPaths": ["./talked"],
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": { "source.organizeImports": true }
|
|
},
|
|
"autoDocstring.startOnNewLine": true
|
|
}
|