1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 13:02:39 +00:00
dotfiles/.config/nvim/lua/plugins/lsp/settings/basedpyright.lua

20 lines
496 B
Lua
Raw Normal View History

return {
settings = {
basedpyright = {
analysis = {
autoSearchPaths = true,
useLibraryCodeForTypes = true,
autoImportCompletions = true,
diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly
2024-04-13 17:24:34 +00:00
typeCheckingMode = "standard", -- off, basic, standard, strict, all
diagnosticSeverityOverrides = {
2024-04-13 17:24:34 +00:00
-- reportAny = true
reportOptionalIterable = "warning",
reportArgumentType = "warning",
2024-04-22 14:19:02 +00:00
reportAssignmentType = "warning",
},
},
},
},
}