We don't get any useful out of this - a git grep is as effective, and these only pollute the pylint output. --- pylintrc | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/pylintrc b/pylintrc index f95779b..3fffb30 100644 --- a/pylintrc +++ b/pylintrc @@ -83,3 +83,25 @@ notes = FIXME,XXX,TODO min-similarity-lines = 4 ignore-comments = yes ignore-docstrings = yes + +[MESSAGES CONTROL] + +# Enable only checker(s) with the given id(s). This option conflicts with the +# disable-checker option +#enable-checker= + +# Enable all checker(s) except those with the given id(s). This option +# conflicts with the enable-checker option +#disable-checker= + +# Enable all messages in the listed categories (IRCWEF). +#enable-msg-cat= + +# Disable all messages in the listed categories (IRCWEF). +disable-msg-cat= + +# Enable the message(s) with the given id(s). +#enable-msg= + +# Disable the message(s) with the given id(s). +disable-msg=W0511 -- 1.6.5.7
