From 142762c1374dbafd8cb1264cd334a9cf0d1d148d Mon Sep 17 00:00:00 2001
From: Ned Batchelder <ned@nedbatchelder.com>
Date: Fri, 14 Jun 2013 15:03:57 -0400
Subject: [PATCH] Rearrange pylintrc a little bit.

---
 pylintrc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pylintrc b/pylintrc
index d4085379b4a..0d4ce311855 100644
--- a/pylintrc
+++ b/pylintrc
@@ -36,8 +36,9 @@ load-plugins=
 disable=
 # Never going to use these
 # C0301: Line too long
-# W0142: Used * or ** magic
 # W0141: Used builtin function 'map'
+# W0142: Used * or ** magic
+    C0301,W0141,W0142,
 
 # Might use these when the code is in better shape
 # C0302: Too many lines in module
@@ -50,7 +51,7 @@ disable=
 # R0912: Too many branches
 # R0913: Too many arguments
 # R0914: Too many local variables
-    C0301,C0302,W0141,W0142,R0201,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914
+    C0302,R0201,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914
 
 
 [REPORTS]
-- 
GitLab