Merge pull request 'correction to basedpyright settings' (#19) from use-basedpyright-2 into main
Reviewed-on: #19
This commit is contained in:
commit
c160396483
1 changed files with 14 additions and 16 deletions
|
@ -76,22 +76,20 @@ return {
|
||||||
marksman = {},
|
marksman = {},
|
||||||
nil_ls = {},
|
nil_ls = {},
|
||||||
basedpyright = {
|
basedpyright = {
|
||||||
python = {
|
analysis = {
|
||||||
analysis = {
|
autoImportCompletions = true,
|
||||||
autoImportCompletions = true,
|
autoSearchPaths = true,
|
||||||
autoSearchPaths = true,
|
diagnosticMode = "openFilesOnly",
|
||||||
diagnosticMode = "workspace",
|
reportMissingImports = true,
|
||||||
reportMissingImports = true,
|
reportMissingParameterType = true,
|
||||||
reportMissingParameterType = true,
|
reportUnnecessaryComparison = true,
|
||||||
reportUnnecessaryComparison = true,
|
reportUnnecessaryContains = true,
|
||||||
reportUnnecessaryContains = true,
|
reportUnusedClass = true,
|
||||||
reportUnusedClass = true,
|
reportUnusedFunction = true,
|
||||||
reportUnusedFunction = true,
|
reportUnsedImports = true,
|
||||||
reportUnsedImports = true,
|
reportUnsusedVariables = true,
|
||||||
reportUnsusedVariables = true,
|
typeCheckingMode = "all",
|
||||||
typeCheckingMode = "all",
|
useLibraryCodeForTypes = true,
|
||||||
useLibraryCodeForTypes = true,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
rust_analyzer = {
|
rust_analyzer = {
|
||||||
|
|
Loading…
Reference in a new issue