X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=blobdiff_plain;f=.pylintrc;h=47881daf3b22bb62a3cdd42ee77b887667cbb9a1;hp=782cd4a5de686d04a5e72635d6e3f48f675e10e5;hb=428ef4a28dc25409df02f6af024043c21307a646;hpb=f2d4185b8c1a263500848554d4283c7ec3201b1c diff --git a/.pylintrc b/.pylintrc index 782cd4a..47881da 100644 --- a/.pylintrc +++ b/.pylintrc @@ -20,9 +20,11 @@ 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 -# Regular expression matching correct method names +# A regular expression matching correct method names. This differs +# from the default in that it will accept much longer names (50 +# characters) if they happen to begin with "test_". method-rgx=([a-z_][a-z0-9_]{2,30}|test_[a-z_][a-z0-9_]{2,50})$ [MISCELLANEOUS] @@ -34,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.