From 1b1777ecfec6ba405d34b0a51c83ade1f089e6dc Mon Sep 17 00:00:00 2001 From: FaultyBranches Date: Sun, 26 Jul 2026 20:29:45 -0500 Subject: [PATCH] fix: disabling the import-errors in pylint --- nvim/after/lsp/pylsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/after/lsp/pylsp.lua b/nvim/after/lsp/pylsp.lua index fee203d..335d2f1 100644 --- a/nvim/after/lsp/pylsp.lua +++ b/nvim/after/lsp/pylsp.lua @@ -12,7 +12,7 @@ return { pylint = { enabled = true, args = { - '--disable=line-too-long', + '--disable=line-too-long,import-error', }, } }