✨ 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,
|
autoImportCompletion = true,
|
||||||
python = {
|
python = {
|
||||||
analysis = {
|
analysis = {
|
||||||
|
diagnosticSeverityOverrides = {
|
||||||
|
reportWildcardImportFromLibrary = "none",
|
||||||
|
reportUnusedImport = "information",
|
||||||
|
reportUnusedClass = "information",
|
||||||
|
reportUnusedFunction = "information",
|
||||||
|
},
|
||||||
typeCheckingMode = "strict",
|
typeCheckingMode = "strict",
|
||||||
autoSearchPaths = true,
|
autoSearchPaths = true,
|
||||||
useLibraryCodeForTypes = true,
|
useLibraryCodeForTypes = true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue