forked from mukunda1518/multiple_interactors_sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
30 lines (23 loc) · 915 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
[MESSAGES CONTROL]
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
#enable=
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
# R0903 -- Too few public methods
# R0913 -- Too many arguments
# W1111 -- Assigning to function call which only returns None
# C0111 -- missing-docstring
# W0613 -- unused-argument
# R0801 -- duplicate-code
# W0511 -- fixme code
disable=R0903,R0913,W1111,C0111,W0613,R0801,W0511
# Maximum number of characters on a single line.
max-line-length=79
# Maximum number of locals for function / method body
max-locals=35
[DESIGN]
max-parents=15