X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=.pylintrc;h=ff7d0fc090d5176d337f78591a8b70d1725b67fc;hb=4b202050329bd8ae1f61eb9841d486f1d3c2d88d;hp=782cd4a5de686d04a5e72635d6e3f48f675e10e5;hpb=f2d4185b8c1a263500848554d4283c7ec3201b1c;p=dunshire.git diff --git a/.pylintrc b/.pylintrc index 782cd4a..ff7d0fc 100644 --- a/.pylintrc +++ b/.pylintrc @@ -22,7 +22,9 @@ bad-functions= # 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 -# 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]