Compare commits

...

2 commits

View file

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