From 165582f846a49a3f37316cf19a518f2109704553 Mon Sep 17 00:00:00 2001 From: Joshua Finch Date: Wed, 24 Apr 2024 07:55:26 -0500 Subject: [PATCH] fix: Removing the E501 "Line too long" warnings from linting --- nvim/lua/plugins/mason.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/nvim/lua/plugins/mason.lua b/nvim/lua/plugins/mason.lua index ecff98a..05624ee 100644 --- a/nvim/lua/plugins/mason.lua +++ b/nvim/lua/plugins/mason.lua @@ -87,6 +87,22 @@ return { } } end, + + ['pylsp'] = function() + lspconfig.pylsp.setup { + capabilities = capabilities, + on_attach = on_attach, + settings = { + pylsp = { + plugins = { + pycodestyle = { + ignore = {'E501'} + } + } + } + } + } + end, } end, dependencies = {