Disable type checking for pyright and install mypy for type checking

This commit is contained in:
Fernando Muñoz Paredes 2024-05-17 09:47:21 +02:00
parent 1938dc78ae
commit 172aa3f6f0
1 changed files with 10 additions and 1 deletions

View File

@ -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 = {},