palantir / python-language-server

An implementation of the Language Server Protocol for Python
MIT License
2.6k stars 282 forks source link

It would be better to keep output from the flake8 linter to be consistent with that of pycodestyle. #884

Closed jdhao closed 3 years ago

jdhao commented 3 years ago

Currently, the return message the flake8 linter here does not contain the error code, while that of pycodestyle also include the error code.

It would be better to include the error code as well, something like the following:

E303 too many blank lines (2)

It is a fairly simple fix. Should I open a pull request for this?

ccordoba12 commented 3 years ago

Yes, please do. And thanks for your help @jdhao!