1.3.4
Default Behavior Changes
Previously LSP-pyright has default python.analysis.diagnosticSeverityOverrides
overrides.
Now they are removed. If you like them, you can add them back to your settings.
"python.analysis.diagnosticSeverityOverrides": {
"reportDuplicateImport": "warning",
"reportImplicitStringConcatenation": "warning",
"reportUnboundVariable": "warning",
"reportUnusedClass": "information",
"reportUnusedFunction": "information",
"reportUnusedImport": "information",
"reportUnusedVariable": "information",
},
- chore: update pyright 1.1.363