From 0dda8696090caa8604f1fc99a2d9e81c1d79f53e Mon Sep 17 00:00:00 2001
From: Iustin Pop <iustin@google.com>
Date: Tue, 29 Dec 2009 17:49:36 +0100
Subject: [PATCH] pylint: disable the similarities checker
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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: Iustin Pop <iustin@google.com>
Reviewed-by: Olivier Tharan <olive@google.com>
---
 pylintrc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pylintrc b/pylintrc
index 3fffb301a..39c923673 100644
--- a/pylintrc
+++ b/pylintrc
@@ -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=
-- 
GitLab