-
Notifications
You must be signed in to change notification settings - Fork 0
Pylint
Christine Vinaviles edited this page Oct 5, 2018
·
3 revisions
pylint
automagically tells everyone when your code is garbage- it even prints a helpful score! Automatic checks against best practices will keep the code clean and neat. However, there are some checks which are disabled:
-
C0111
Missing docstring: Not everything needs a comment
his is automatically run as part of the pre-commit githook but if you would like to run it manually, simple execute:
find . -iname "*.py" | xargs pylint
The command ollowing will find all python files and run the linter over them.