How do I exclude South migrations from Pylint?

In recent pylint versions, disable-msg-cat has been unified with other disable-* options as a single 'disable' option. Since then,

# pylint: disable=I,E,R,F,C

may be added on top of files where you don't want any messages issued.


# .pylintrc
ignore-patterns=\d{4}_.*?.py

Adding the following to the .pylintrc file did it.

[MASTER]

# Add <file or directory> to the black list. It should be a base name, not a
# path. You may set this option multiple times.
ignore=tests.py, urls.py, migrations