-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pylintrc
32 lines (24 loc) · 882 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Custom .pylintrc file for mythtv_services_api. Use pylint --reports=y
# to see the reports.
[REPORTS]
# Set the output format. WAS: text
output-format=colorized
# Tells whether to display a full report or only the messages. WAS: yes
reports=no
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma. HAD: TODO,XXX
# Uncommenting the next line would remove the TODO warnings.
notes=FIXME
[FORMAT]
# Maximum number of characters on a single line. WAS: 80
# but changed to 79 to match pep8 check.
max-line-length=79
[DESIGN]
# Maximum number of locals for function / method body. WAS: 15
max-locals=20
# Maximum number of return / yield for function / method body. WAS: 6
max-returns=16
# Maximum number of branch for function / method body. WAS: 12
max-branches=20
# Maximum number of attributes for a class (see R0902). WAS: 7
max-attributes=10