@@ -25,9 +25,6 @@ ignore=
25
25
# Pickle collected data for later comparisons.
26
26
persistent =no
27
27
28
- # Set the cache size for astng objects.
29
- cache-size =500
30
-
31
28
# List of plugins (as comma separated values of python modules names) to load,
32
29
# usually to register additional checkers.
33
30
load-plugins =
@@ -61,15 +58,11 @@ disable=
61
58
# Messages that are just silly:
62
59
locally-disabled,
63
60
exec-used,
64
- no-init,
65
- bad-whitespace,
66
61
global-statement,
67
62
broad-except,
68
63
no-else-return,
69
- misplaced-comparison-constant,
70
64
subprocess-run-check,
71
65
# Messages that may be silly:
72
- no-self-use,
73
66
no-member,
74
67
using-constant-test,
75
68
too-many-nested-blocks,
@@ -83,7 +76,6 @@ disable=
83
76
consider-using-with,
84
77
# Formatting stuff
85
78
superfluous-parens,
86
- bad-continuation,
87
79
# Messages that are noisy for now, eventually maybe we'll turn them on:
88
80
invalid-name,
89
81
protected-access,
@@ -100,11 +92,6 @@ msg-template={path}:{line} {C}: {msg} ({symbol})
100
92
# (visual studio) and html
101
93
output-format =text
102
94
103
- # Put messages in a separate file for each module / package specified on the
104
- # command line instead of printing them on stdout. Reports (if any) will be
105
- # written in a file name "pylint_global.[txt|html]".
106
- files-output =no
107
-
108
95
# Tells whether to display a full report or only the messages
109
96
reports =no
110
97
@@ -180,9 +167,6 @@ good-names=i,j,k,ex,Run,_
180
167
# Bad variable names which should always be refused, separated by a comma
181
168
bad-names =foo,bar,baz,toto,tutu,tata
182
169
183
- # List of builtins function names that should not be used, separated by a comma
184
- bad-functions =
185
-
186
170
187
171
# try to find bugs in the code using type inference
188
172
#
@@ -196,10 +180,6 @@ ignore-mixin-members=yes
196
180
# (useful for classes with attributes dynamically set).
197
181
ignored-classes =SQLObject
198
182
199
- # List of members which are usually get through zope's acquisition mechanism and
200
- # so shouldn't trigger E0201 when accessed (need zope=yes to be considered).
201
- acquired-members =REQUEST,acl_users,aq_parent
202
-
203
183
204
184
# checks for
205
185
# * unused variables / imports
0 commit comments