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
This commit is contained in:
Sanchayan Maity 2021-03-05 18:26:27 +05:30
parent d601e558da
commit 87e5ddeb37
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
[pycodestyle]
count = False
ignore = E501
statistics = True