I note that I can disable particular messages using a comment. For example, pylint by default complains about variable names of less than three letters. I can suppress that like
In the module comments you can only enable/disable specific PyLint checks:
# pylint: disable=wildcard-import, method-hidden # pylint: enable=too-many-lines