1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-11-01 00:21:13 +00:00

[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

View File

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