Skip to content
Christine Vinaviles edited this page Oct 5, 2018 · 3 revisions

What is pylint?

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.

Clone this wiki locally