dotfiles/.config/nvim/lsp/pylsp.lua
2026-03-07 16:11:49 -05:00

13 lines
185 B
Lua

return {
settings = {
pylsp = {
plugins = {
pycodestyle = {
ignore = { "W391", "E501" },
maxLineLength = 100,
},
},
},
},
}