Skip to content

1.3.4

Compare
Choose a tag to compare
@jfcherng jfcherng released this 16 May 04:25
· 5 commits to master since this release
326fe8e

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",
},