My neovim(0.6.1) use nvim-lint manage pylint, use pylsp for completion.
When edit a python file, use numpy, scipy etc, the code competion, hover, signature is slow, and cpu use 100%. The code have same lint notion twice. I want disable linter in pylsp, but it not work. How can i do?
This is my config: pylsp.lua
opts = {
cmd = { "pylsp" },
filetypes = { "python" },
root_dir = function()
return vim.fn.getcwd()
end,
single_file_support = true,
configurationSources = {""}, -- default is pycodestyle
rope = {extensionModules = "", ropeFolder = {} },
plugins = {
jedi_completion = {
enabled = true,
eager = true,
cache_for = {"numpy", "scipy"}
},
jedi_definition = {
enabled = true,
follow_imports = true,
follow_builtin_imports = true,
},
jedi_hover = { enabled = true },
jedi_references = { enabled = true },
jedi_signature_help = { enabled = true },
jedi_symbols = { enabled = true, all_scopes = true, include_import_symbols = true },
preload = { enabled = true, modules = {"numpy", "scipy"} },
mccabe = { enabled = false },
mypy = { enabled = false },
isort = { enabled = false },
spyder = { enabled = false },
memestra = { enabled = false },
pycodestyle = { enabled = false }, -- not work
flake8 = { enabled = false },
pyflakes = { enabled = false },
yapf = { enabled = false },
pylint = {
enabled = false,
args = {
"-f",
"json",
"--rcfile=" .. "~/.pylintrc"
}
},
rope = { enabled = false },
rope_completion = { enabled = false, eager = false },
},
}
pylsp.setup(opts)
If anyone is still having this issue there is linting being through pycodestyle. it appears from the pylsp github page (https://github.com/python-lsp/python-lsp-server#installation) that pylint is disabled by default but the pydocstyle is no which provides a load of errors and warnings if your quite "loose" with coding as i am. to disable this within my config i did the following:
so if you are using Mason to do linting with pylint and you have the pylsp working also then you may get a lot of errors and some of those might appear multiple times. a good video/videos to watch on lsp and linting that helped me is https://www.youtube.com/watch?v=ybUE4D80XSk&t=1382s&ab_channel=JoseanMartinez and also https://youtu.be/NL8D8EkphUw. My code fits his example he showed in that later video nicely where he uses pyright, i use pylsp instad. The specific part of that later video where he does this is 26:38. you can also setup options for keeping linting with pylsp and/or pylint but disabling certain error messages like "line to long" (who hasn't got more than 80 chars of screen to use?) that is done similar to this above code but in the linter config, i use nvim-lint (dude only briefly mentions this in the videos):
this comes from the post : How do I disable a Pylint warning? additional info here: https://docs.pylint.org/faq.html#can-i-give-pylint-a-file-as-an-argument-instead-of-a-module