Disable type checking for pyright and install mypy for type checking

pull/938/head
Fernando Muñoz Paredes 2 weeks ago
parent 1938dc78ae
commit 172aa3f6f0

@ -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…
Cancel
Save