Pylint missing-docstring seems to ignore some functions and private methods in classes.
How can I make pylint enforce that all functions and methods have to have docstrings in a certain repository?
one option I've found is to disable ignoring of private functions:
no-docstring-rgx='a^'