Skip to content
Snippets Groups Projects
Commit 0dda8696 authored by Iustin Pop's avatar Iustin Pop
Browse files

pylint: disable the similarities checker


This is a very slow checker, estimated to be O(n²) by its author; so
using it all the time is not good. It can be re-enabled on the command
line via “--disable-checker=”.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarOlivier Tharan <olive@google.com>
parent 857121ad
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,7 @@ ignore-docstrings = yes
# 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=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment