From a5e460ae874cf591edeb88fc1a39ca89842119c9 Mon Sep 17 00:00:00 2001 From: FaultyBranches Date: Wed, 22 Apr 2026 12:15:39 -0500 Subject: [PATCH] fix: Adding an ignore setting for pylint to remove calls to adding function level docsctrings --- nvim/after/lsp/pylsp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nvim/after/lsp/pylsp.lua b/nvim/after/lsp/pylsp.lua index cca0eaa..0bf57fe 100644 --- a/nvim/after/lsp/pylsp.lua +++ b/nvim/after/lsp/pylsp.lua @@ -12,7 +12,8 @@ return { pylint = { enabled = true, args = { - '--disable=line-too-long' + '--disable=line-too-long', + '--disable=missing-function-docstring' }, } }