25 lines
No EOL
683 B
JSON
25 lines
No EOL
683 B
JSON
{
|
|
"python.languageServer": "Pylance",
|
|
|
|
// configure code formating
|
|
"python.formatting.provider": "black",
|
|
"python.sortImports.path": "isort",
|
|
"python.sortImports.args": [
|
|
"--profile=black",
|
|
],
|
|
|
|
// configure pylance
|
|
"python.analysis.typeCheckingMode": "strict",
|
|
"python.analysis.autoImportCompletions": false,
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
"reportPrivateUsage": "information",
|
|
"reportUntypedNamedTuple": "information",
|
|
},
|
|
|
|
// configure pytest
|
|
"python.testing.pytestArgs": [
|
|
"tests"
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
} |