1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-02-23 15:47:59 +00:00

21 lines
531 B
Lua
Raw Normal View History

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