[neovim] Update basedpyright defaults

This commit is contained in:
Daniel Carrillo 2024-04-13 19:24:34 +02:00
parent e113aa7cfb
commit 747aec9253
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 4 additions and 9 deletions

View File

@ -6,16 +6,11 @@ return {
useLibraryCodeForTypes = true, useLibraryCodeForTypes = true,
autoImportCompletions = true, autoImportCompletions = true,
diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly
typeCheckingMode = "standard", -- off, basic, standard, strict, all
diagnosticSeverityOverrides = { diagnosticSeverityOverrides = {
typeCheckingMode = "standard", -- off, basic, standard, strict, all -- reportAny = true
reportGeneralTypeIssues = "information", reportOptionalIterable = "warning",
reportAny = false, reportArgumentType = "warning",
reportDeprecated = "information",
reportMissingTypeStubs = "information",
reportOptionalIterable = "information",
reportUnknownMemberType = "information",
reportUnknownVariableType = "information",
reportArgumentType = "information",
}, },
}, },
}, },