]> gitweb.michael.orlitzky.com - dunshire.git/blob - .pylintrc
Fiddle with the pylint settings.
[dunshire.git] / .pylintrc
1 [MASTER]
2 # We turn off the reports anyway
3 persistent=no
4
5 # Use multiple processes to speed up Pylint.
6 jobs=2
7
8 [MESSAGES CONTROL]
9 disable=
10
11 [REPORTS]
12 reports=no
13
14 [BASIC]
15 # Allow map() and filter() functions, because why the fuck not?
16 bad-functions=
17
18 # These are all math names from the associated papers. It would be
19 # more confusing to name them something else and then have to juggle
20 # them in your head as you switch between the source code and the
21 # papers.
22 good-names=a,b,c,D,e1,e2,h,A,C,G,K,_K,L,L_matrix,_L,indented_L,M
23
24 [MISCELLANEOUS]
25 # List of note tags to take in consideration, separated by a comma.
26 notes=FIXME,TODO
27
28
29 [FORMAT]
30 # Maximum number of characters on a single line.
31 max-line-length=78