forked from rthalley/dnspython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pylintrc
71 lines (62 loc) · 1.55 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[MASTER]
# Pickle collected data for later comparisons.
persistent=no
# Use multiple processes to speed up Pylint.
jobs=1
[MESSAGES CONTROL]
enable=
all,
python3
disable=
R,
I,
anomalous-backslash-in-string,
arguments-differ,
assigning-non-slot,
attribute-defined-outside-init,
bad-builtin,
bad-continuation,
bad-whitespace,
bare-except,
basestring-builtin,
delslice-method,
deprecated-lambda,
deprecated-method,
dict-iter-method,
fixme,
getslice-method,
global-statement,
invalid-name,
long-builtin,
missing-docstring,
no-absolute-import,
no-member,
old-division,
protected-access,
range-builtin-not-iterating,
redefined-builtin,
round-builtin,
superfluous-parens,
too-many-lines,
undefined-loop-variable,
undefined-variable,
unichr-builtin,
unicode-builtin,
unnecessary-lambda,
unneeded-not,
unused-argument,
unused-import,
unused-variable,
wrong-import-order,
wrong-import-position,
xrange-builtin
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=colorized
# 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='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg})'