@@ -30,30 +30,15 @@ disable=
30
30
abstract-method,
31
31
signature-differs
32
32
33
-
34
-
35
33
[REPORTS]
36
34
# Set the output format. Available formats are text, parseable, colorized, msvs
37
35
# (visual studio) and html
38
36
output-format =colorized
39
37
40
-
41
38
# Tells whether to display a full report or only the messages
42
39
# CHANGE: No report.
43
40
reports =no
44
- # Python expression which should return a note less than 10 (10 is the highest
45
- # note). You have access to the variables errors warning, statement which
46
- # respectively contain the number of errors / warnings messages and the total
47
- # number of statements analyzed. This is used by the global evaluation report
48
- # (RP0004).
49
- # evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
50
- # Add a comment according to your evaluation note. This is used by the global
51
- # evaluation report (RP0004).
52
- # comment=no
53
41
54
- [MISCELLANEOUS]
55
- # List of note tags to take in consideration, separated by a comma.
56
- # notes=FIXME,XXX,TODO
57
42
[FORMAT]
58
43
# Maximum number of characters on a single line.
59
44
max-line-length =100
@@ -64,19 +49,10 @@ max-line-length=100
64
49
indent-string =' '
65
50
66
51
[TYPECHECK]
67
- # Tells whether missing members accessed in mixin class should be ignored. A
68
- # mixin class is detected if its name ends with "mixin" (case insensitive).
69
- # ignore-mixin-members=yes
52
+
70
53
# List of classes names for which member attributes should not be checked
71
54
# (useful for classes with attributes dynamically set).
72
- ignored-classes =hashlib,numpy
73
- # When zope mode is activated, add a predefined set of Zope acquired attributes
74
- # to generated-members.
75
- # zope=no
76
- # List of members which are set dynamically and missed by pylint inference
77
- # system, and so shouldn't trigger E0201 when accessed.
78
- # CHANGE: Added 'AndRaise', 'AndReturn', 'InAnyOrder' and 'MultipleTimes' for pymox.
79
- # CHANGE: Added tempdir for @osutils.TempDirDecorator.
55
+ ignored-classes =numpy
80
56
generated-members =REQUEST,acl_users,aq_parent,AndRaise,AndReturn,InAnyOrder,MultipleTimes,tempdir
81
57
82
58
[BASIC]
@@ -92,16 +68,6 @@ bad-functions=
92
68
exit,
93
69
input,
94
70
quit,
95
- # Regular expression which should only match correct module names
96
- # module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
97
- # Regular expression which should only match correct module level names
98
- # const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
99
- # Regular expression which should only match correct class names
100
- # class-rgx=[A-Z_][a-zA-Z0-9]+$
101
- # Regular expression which should only match correct function names
102
- #
103
- #
104
-
105
71
106
72
[SIMILARITIES]
107
73
# Minimum lines number of a similarity.
@@ -122,50 +88,7 @@ dummy-variables-rgx=_|unused_
122
88
# you should avoid to define new builtins when possible.
123
89
# additional-builtins=
124
90
125
- [DESIGN]
126
- # Maximum number of arguments for function / method
127
- # max-args=5
128
-
129
- # Argument names that match this expression will be ignored. Default to name
130
- # with leading underscore
131
-
132
- # ignored-argument-names=_.*
133
- # Maximum number of locals for function / method body
134
- # max-locals=15
135
-
136
- # Maximum number of return / yield for function / method body
137
- # max-returns=6
138
-
139
- # Maximum number of branch for function / method body
140
- # max-branchs=12
141
-
142
- # Maximum number of statements in function / method body
143
- # max-statements=50
144
-
145
- # Maximum number of parents for a class (see R0901).
146
- max-parents =10
147
-
148
- # Maximum number of attributes for a class (see R0902).
149
- # max-attributes=7
150
-
151
- # Minimum number of public methods for a class (see R0903).
152
- # min-public-methods=2
153
-
154
- # Maximum number of public methods for a class (see R0904).
155
- # max-public-methods=20
156
-
157
- [IMPORTS]
158
- # Create a graph of every (i.e. internal and external) dependencies in the
159
- # given file (report RP0402 must not be disabled)
160
- # import-graph=
161
- # Create a graph of external dependencies in the given file (report RP0402 must
162
- # not be disabled)
163
- # ext-import-graph=
164
- # Create a graph of internal dependencies in the given file (report RP0402 must
165
- # not be disabled)
166
- # int-import-graph=
167
-
168
91
[LOGGING]
169
92
# Apply logging string format checks to calls on these modules.
170
93
logging-modules =
171
- logging
94
+ logging
0 commit comments