[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,
autoImportCompletions = true,
diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly
typeCheckingMode = "standard", -- off, basic, standard, strict, all
diagnosticSeverityOverrides = {
typeCheckingMode = "standard", -- off, basic, standard, strict, all
reportGeneralTypeIssues = "information",
reportAny = false,
reportDeprecated = "information",
reportMissingTypeStubs = "information",
reportOptionalIterable = "information",
reportUnknownMemberType = "information",
reportUnknownVariableType = "information",
reportArgumentType = "information",
-- reportAny = true
reportOptionalIterable = "warning",
reportArgumentType = "warning",
},
},
},