honeybadger-io / honeybadger-python

Send Python and Django errors to Honeybadger.
https://www.honeybadger.io/
MIT License
15 stars 25 forks source link

Install a python linter #120

Open subzero10 opened 1 year ago

subzero10 commented 1 year ago

My Intellij IDE complains with style warnings and inconsistencies with PEP 8. I think we should integrate python linter and include in our CI. A quick google search brought up the following linters:

@joshuap Do you have any experience/preference towards any of the above?

joshuap commented 1 year ago

I don't have a personal preference—what about you, @Kelvin4664? Otherwise I'd go with whichever seems more popular.

Kelvin4664 commented 1 year ago

No personal preference either. I am good with either of both.

dotysan commented 1 year ago

Start with flake8. You can always add others later.

dotysan commented 1 year ago

I took an initial stab in PR #149 and cleaning up.