fix: Removing the E501 "Line too long" warnings from linting

This commit is contained in:
Finch 2024-04-24 07:55:26 -05:00
parent 4f2f7ec117
commit 165582f846

View File

@ -87,6 +87,22 @@ return {
} }
} }
end, end,
['pylsp'] = function()
lspconfig.pylsp.setup {
capabilities = capabilities,
on_attach = on_attach,
settings = {
pylsp = {
plugins = {
pycodestyle = {
ignore = {'E501'}
}
}
}
}
}
end,
} }
end, end,
dependencies = { dependencies = {