X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/d984846ddf447c4eab67bd112cb5a52456f3fd3b..55c8595009429f6ab41cef45ea274a126429ea1f:/pylintrc diff --git a/pylintrc b/pylintrc index f95779b..7d42070 100644 --- a/pylintrc +++ b/pylintrc @@ -83,3 +83,26 @@ 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= +disable-checker=similarities + +# 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,R0922,W0201