python-lsp / python-lsp-server

Fork of the python-language-server project, maintained by the Spyder IDE team and the community
MIT License
1.9k stars 196 forks source link

Severity Overrides ignored since recent update #519

Closed thecircleisround closed 8 months ago

thecircleisround commented 8 months ago

Hello,

Having issues with type errors since python-lsp-server update. reportGeneralTypeIssues setting seems to be ignored.

"python.analysis.diagnosticSeverityOverrides": {
            "reportDuplicateImport": "warning",
            "reportImplicitStringConcatenation": "warning",
            "reportMissingParameterType": "none",
            "reportUnboundVariable": "warning",
            "reportUninitializedInstanceVariable": "none",
            "reportUnusedClass": "information",
            "reportUnusedFunction": "information",
            "reportUnusedImport": "information",
            "reportUnusedVariable": "information",
            "reportGeneralTypeIssues": "none",
        },