mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-14 05:21:13 +00:00
21 lines
557 B
Lua
21 lines
557 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",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|