-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add PEP8 checks to automatic builds #3
Comments
Pep8 recommends up to 100 chars pro line.
Pylint complexity checker? https://pypi.python.org/pypi/pylint-mccabe |
Thanks @piotr-kubica. |
Sometimes the methods can become very long, introducing a lot of complexity and making it hard to test. The complexity checker would then give a hint for spotting such complex methods. |
That sounds like a very useful thing to make part of the tests. I will include it in my PR. |
I made a start with this here: https://github.com/AartGoossens/sweatpy/tree/feature/isort_pylint
Any ideas on what to check are welcome (e.g. max line length).
The text was updated successfully, but these errors were encountered: