26 lines
1.0 KiB
JSON
26 lines
1.0 KiB
JSON
{
|
|
// Pylance の Type Checking を有効化
|
|
"python.languageServer": "Pylance",
|
|
"python.analysis.typeCheckingMode": "strict",
|
|
// Pylance の Type Checking のうち、いくつかのエラー報告を抑制する
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
"reportConstantRedefinition": "none",
|
|
"reportGeneralTypeIssues": "warning",
|
|
"reportMissingParameterType": "warning",
|
|
"reportMissingTypeStubs": "none",
|
|
"reportPrivateImportUsage": "none",
|
|
"reportPrivateUsage": "warning",
|
|
"reportShadowedImports": "none",
|
|
"reportUnnecessaryComparison": "none",
|
|
"reportUnknownArgumentType": "none",
|
|
"reportUnknownMemberType": "none",
|
|
"reportUnknownParameterType": "warning",
|
|
"reportUnknownVariableType": "none",
|
|
"reportUnusedFunction": "none",
|
|
"reportUnusedVariable": "information",
|
|
},
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnType": true,
|
|
},
|
|
} |