-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
29 lines (20 loc) · 887 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
[MESSAGES CONTROL]
# locally disable too-many-lines is only possible if the disable statement is
# put into the first line, which is not good practice
# see https://github.com/SoCo/SoCo/issues/127
# duplicate code check disabled whilst refactoring of wimp plugin is in
# progress
disable=too-many-lines,locally-disabled,duplicate-code,too-few-public-methods,
bad-option-value,no-else-return,cyclic-import,too-many-public-methods,
bad-continuation
[REPORTS]
# Tells whether to display a full report or only the messages
reports=no
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=88
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus extisting member attributes cannot be deduced by static analysis
ignored-modules=pytest