In my case, with Pylint 2.6.0, the missing docstring messages wouldn't disappear, even after explicitly disabling missing-module-docstring
, missing-class-docstring
and missing-function-docstring
in my .pylintrc
file. Finally, the following configuration worked for me:
[MESSAGES CONTROL]
disable=missing-docstring,empty-docstring
Apparently, Pylint 2.6.0 still validates docstrings unless both checks are disabled.