forked from SoCo/SoCo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpylintrc
28 lines (19 loc) · 872 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
[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
disable=too-many-lines,locally-disabled
[REPORTS]
# Tells whether to display a full report or only the messages
reports=no
# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details
msg-template={C}: {line:5d},{column:2d}: {msg} ({symbol})
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=79
[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