mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-13 03:41:13 +00:00
23 lines
638 B
Lua
23 lines
638 B
Lua
return {
|
|
settings = {
|
|
basedpyright = {
|
|
analysis = {
|
|
autoSearchPaths = true,
|
|
useLibraryCodeForTypes = true,
|
|
autoImportCompletions = true,
|
|
diagnosticsMode = "openFilesOnly", -- workspace, openFilesOnly
|
|
diagnosticSeverityOverrides = {
|
|
typeCheckingMode = "standard", -- off, basic, standard, strict, all
|
|
reportAny = false,
|
|
reportDeprecated = "information",
|
|
reportMissingTypeStubs = "information",
|
|
reportUnknownMemberType = "information",
|
|
reportUnknownVariableType = "information",
|
|
reportArgumentType = "information",
|
|
reportIndexIssues = "information",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|