Files
PyQt6_LaTaniere/.vscode/settings.json
2026-03-16 09:29:57 +01:00

18 lines
607 B
JSON

{
"python.analysis.autoImportCompletions": true,
"python.analysis.extraPaths": [".venv/lib/site-packages"],
"python.analysis.fixAll": ["source.unusedImports"],
"python.languageServer": "Pylance",
"mypy-type-checker.args": [
"--disallow-untyped-defs=True",
"--disallow-untyped-calls=True",
"--check-untyped-defs=True",
"--warn_return_any=True",
"--no-implicit-optional=True",
"--strict_optional=True",
"--ignore_missing_imports=True",
],
"editor.defaultFormatter": "charliermarsh.ruff",
"python.useEnvironmentsExtension": true,
}