replace pyright with basedpyright #18

Merged
softinio merged 1 commit from use-basedpyright into main 2024-08-31 09:14:09 -07:00

View file

@ -75,13 +75,21 @@ return {
jsonls = {},
marksman = {},
nil_ls = {},
pyright = {
basedpyright = {
python = {
analysis = {
autoImportCompletions = true,
autoSearchPaths = true,
diagnosticMode = "openFilesOnly",
typeCheckingMode = "basic",
diagnosticMode = "workspace",
reportMissingImports = true,
reportMissingParameterType = true,
reportUnnecessaryComparison = true,
reportUnnecessaryContains = true,
reportUnusedClass = true,
reportUnusedFunction = true,
reportUnsedImports = true,
reportUnsusedVariables = true,
typeCheckingMode = "all",
useLibraryCodeForTypes = true,
},
},