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 = {
|
local servers = {
|
||||||
-- clangd = {},
|
-- clangd = {},
|
||||||
-- gopls = {},
|
-- gopls = {},
|
||||||
pyright = {},
|
pyright = {
|
||||||
|
settings = {
|
||||||
|
python = {
|
||||||
|
analysis = {
|
||||||
|
typeCheckingMode = "off"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
ruff = {},
|
ruff = {},
|
||||||
|
mypy = {},
|
||||||
taplo = {}, -- LSP for toml files
|
taplo = {}, -- LSP for toml files
|
||||||
debugpy = {},
|
debugpy = {},
|
||||||
-- rust_analyzer = {},
|
-- rust_analyzer = {},
|
||||||
|
|
Loading…
Reference in New Issue