From: Michael Orlitzky Date: Tue, 1 Nov 2016 21:55:27 +0000 (-0400) Subject: Comment my new method-rgx in .pylintrc. X-Git-Tag: 0.1.0~90 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=commitdiff_plain;h=4b202050329bd8ae1f61eb9841d486f1d3c2d88d Comment my new method-rgx in .pylintrc. --- 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]