ignore line too long on python lsp

This commit is contained in:
2026-02-09 23:25:08 +01:00
parent 7d79e9d8ae
commit c1bebc9df1

View File

@ -45,7 +45,15 @@
vim.lsp.enable('glsl_analyzer') vim.lsp.enable('glsl_analyzer')
vim.lsp.config('pylsp', coq.lsp_ensure_capabilities({ vim.lsp.config('pylsp', coq.lsp_ensure_capabilities({
cmd = {"pylsp", "-vvv", "--log-file", "/tmp/lsp.log"} settings = {
pylsp = {
plugins = {
pycodestyle = {
ignore = {'E501'},
}
}
}
}
})) }))
vim.lsp.enable('pylsp') vim.lsp.enable('pylsp')