From 528182f894a8329a2d3d36c4a58aa4a17cf29f71 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 3 Nov 2016 18:59:53 -0400 Subject: [PATCH] Allow longer modules in .pylintrc and ignore some new names. --- .pylintrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index ff7d0fc..47881da 100644 --- a/.pylintrc +++ b/.pylintrc @@ -20,7 +20,7 @@ bad-functions= # These are all names from the associated papers. It would be more # confusing to name them something else and then have to juggle them # in your head as you switch between the source code and the papers. -good-names=a,b,c,D,e1,e2,h,A,C,G,H,K,_K,L,_L,indented_L,M +good-names=a,b,_b,_c,D,e1,e2,_G,_h,A,_A,_C,G,H,K,_K,L,_L,indented_L,M # A regular expression matching correct method names. This differs # from the default in that it will accept much longer names (50 @@ -36,6 +36,10 @@ notes=FIXME,TODO # Maximum number of characters on a single line. max-line-length=78 +# Maximum number of lines in a module. I bet the default of 1000 was +# chosen by someone who doesn't document his code. +max-module-lines=10000 + [DESIGN] # Reduce this to 1 from 2, since pylint doesn't seem to think that # __str__(), __contains__(), etc. are public methods. -- 2.43.2