X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=.pylintrc;h=ff7d0fc090d5176d337f78591a8b70d1725b67fc;hb=6e48c75c41de22e040dd49368dafdb93578bf8fe;hp=16b1ca72a59736ceeb6a31a53835e9678fdf5cd4;hpb=23a5893ede3a22653128d3e7a66fb3f6b80616b8;p=dunshire.git diff --git a/.pylintrc b/.pylintrc index 16b1ca7..ff7d0fc 100644 --- a/.pylintrc +++ b/.pylintrc @@ -20,7 +20,12 @@ 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,K,_K,L,_L,indented_L,M +good-names=a,b,c,D,e1,e2,h,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 +# 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] # List of note tags to take in consideration, separated by a comma.