[MASTER] # We turn off the reports anyway persistent=no # Use multiple processes to speed up Pylint. jobs=2 [MESSAGES CONTROL] # Thanks, but you don't need to tell me that I suppressed the message # that I suppressed. Kinda defeats the point, eh? disable=I0011,I0020 [REPORTS] reports=no [BASIC] # Allow map() and filter() functions, because why the fuck not? 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 # 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. notes=FIXME,TODO [FORMAT] # Maximum number of characters on a single line. max-line-length=78 [DESIGN] # Reduce this to 1 from 2, since pylint doesn't seem to think that # __str__(), __contains__(), etc. are public methods. min-public-methods=1