From 87e5ddeb379e25e24c6f4b29339bfd76a0ef3884 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 5 Mar 2021 18:26:27 +0530 Subject: [PATCH] pycodestyle: Ignore E501 line too long error We add this so that pyls does not complain about this. This could also be done in LSP configuration, like below, but not doing that. https://github.com/lukas-reineke/dotfiles/blob/master/vim/lua/lsp.lua --- pycodestyle/.config/pycodestyle | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pycodestyle/.config/pycodestyle diff --git a/pycodestyle/.config/pycodestyle b/pycodestyle/.config/pycodestyle new file mode 100644 index 0000000..36021fe --- /dev/null +++ b/pycodestyle/.config/pycodestyle @@ -0,0 +1,4 @@ +[pycodestyle] +count = False +ignore = E501 +statistics = True