Merge pull request #4 from fernandom06/Fix-django-diagnostic
Disable type checking for pyright and install mypy for type checking
This commit is contained in:
commit
5e7105c49c
11
init.lua
11
init.lua
|
@ -558,8 +558,17 @@ require('lazy').setup({
|
|||
local servers = {
|
||||
-- clangd = {},
|
||||
-- gopls = {},
|
||||
pyright = {},
|
||||
pyright = {
|
||||
settings = {
|
||||
python = {
|
||||
analysis = {
|
||||
typeCheckingMode = "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
ruff = {},
|
||||
mypy = {},
|
||||
taplo = {}, -- LSP for toml files
|
||||
debugpy = {},
|
||||
-- rust_analyzer = {},
|
||||
|
|
Loading…
Reference in New Issue