{ // static analysis "python.languageServer": "Pylance", "python.analysis.typeCheckingMode": "strict", "python.analysis.autoImportCompletions": false, "python.analysis.diagnosticSeverityOverrides": { "reportPrivateUsage": "information", "reportUntypedNamedTuple": "information", }, // formating "python.formatting.provider": "black", // sorting "python.sortImports.path": "isort", "python.sortImports.args": [ "--profile=black", ], // tests "python.testing.pytestArgs": [ "tests" ], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, }