✨ feat(nvim): add some options to the pyright lsp to hide some useless info
This commit is contained in:
parent
bd504ddd2e
commit
a38588a3f5
1 changed files with 6 additions and 0 deletions
|
@ -35,6 +35,12 @@ return {
|
|||
autoImportCompletion = true,
|
||||
python = {
|
||||
analysis = {
|
||||
diagnosticSeverityOverrides = {
|
||||
reportWildcardImportFromLibrary = "none",
|
||||
reportUnusedImport = "information",
|
||||
reportUnusedClass = "information",
|
||||
reportUnusedFunction = "information",
|
||||
},
|
||||
typeCheckingMode = "strict",
|
||||
autoSearchPaths = true,
|
||||
useLibraryCodeForTypes = true,
|
||||
|
|
Loading…
Add table
Reference in a new issue