以下は、Pylintのドキュメントからのものです。
--ignore=<file>
Add <file or directory> to the black list. It should be a
base name, not a path. You may set this option multiple
times. [current: %default]
それでも、ディレクトリ部分を機能させることができません。
django-south移行ファイルがあるmigrationsというディレクトリがあります。--ignore =migrationsと入力しても、 migrationsディレクトリ内のファイルにエラー/警告が表示され続けます。
それ--ignore
はディレクトリに対して機能していないのでしょうか?
無視されたファイルに一致する正規表現を使用することさえできれば、django-southファイルはすべて0001_something、0002_something ...という名前であるため、機能します。
ディレクトリによる無視を機能させることができなかったので、# pylint: disable-msg-cat=WCREFI
すべてのPylintエラー、警告、および情報を無視する、各移行ファイルの上に単に置くことに頼りました。