ignore pep8 stuff with pylsp

This commit is contained in:
Dominic 2025-03-23 16:12:57 -04:00
parent 39f0309495
commit 486fd53d6e

View File

@ -664,10 +664,21 @@ require("lazy").setup({
-- clangd = {},
-- gopls = {},
pylsp = {
plugins = {
pycodestyle = {
ignore = { "W391" },
maxLineLength = 100,
settings = {
pylsp = {
configurationSources = { "flake8" },
plugins = {
flake8 = {
enabled = true,
ignore = { "W391", "W293", "E501" },
maxLineLength = 1000,
},
pycodestyle = {
enabled = true,
ignore = { "W391", "W293", "E501" },
maxLineLength = 100,
},
},
},
},
},