@@ -42,7 +42,6 @@ confidence=
42
42
# multiple time. See also the "--disable" option for examples.
43
43
enable =
44
44
use-symbolic-message-instead,
45
- useless-supression,
46
45
47
46
# Disable the message, report, category or checker with the given id(s). You
48
47
# can either give multiple identifiers separated by comma (,) or put this
@@ -65,7 +64,6 @@ disable=
65
64
logging-fstring-interpolation,
66
65
wrong-import-order,
67
66
fixme,
68
- no-self-use,
69
67
unused-argument,
70
68
useless-return,
71
69
broad-except
@@ -78,11 +76,6 @@ disable=
78
76
# mypackage.mymodule.MyReporterClass.
79
77
output-format =text
80
78
81
- # Put messages in a separate file for each module / package specified on the
82
- # command line instead of printing them on stdout. Reports (if any) will be
83
- # written in a file name "pylint_global.[txt|html]".
84
- files-output =no
85
-
86
79
# Tells whether to display a full report or only the messages
87
80
reports =no
88
81
@@ -156,9 +149,6 @@ ignore-long-lines=^\s*(# )?<?https?://\S+>?$
156
149
# else.
157
150
single-line-if-stmt =no
158
151
159
- # List of optional constructs for which whitespace checking is disabled
160
- no-space-check =trailing-comma,dict-separator
161
-
162
152
# Maximum number of lines in a module
163
153
max-module-lines =2000
164
154
@@ -191,63 +181,33 @@ include-naming-hint=no
191
181
# Regular expression matching correct function names
192
182
function-rgx =[a-z_][a-z0-9_]{2,30}$
193
183
194
- # Naming hint for function names
195
- function-name-hint =[a-z_][a-z0-9_]{2,30}$
196
-
197
184
# Regular expression matching correct variable names
198
185
variable-rgx =[a-z_][a-z0-9_]{2,30}$
199
186
200
- # Naming hint for variable names
201
- variable-name-hint =[a-z_][a-z0-9_]{2,30}$
202
-
203
187
# Regular expression matching correct constant names
204
188
const-rgx =(([A-Z_][A-Z0-9_]*)|(__.*__))$
205
189
206
- # Naming hint for constant names
207
- const-name-hint =(([A-Z_][A-Z0-9_]*)|(__.*__))$
208
-
209
190
# Regular expression matching correct attribute names
210
191
attr-rgx =[a-z_][a-z0-9_]{2,}$
211
192
212
- # Naming hint for attribute names
213
- attr-name-hint =[a-z_][a-z0-9_]{2,}$
214
-
215
193
# Regular expression matching correct argument names
216
194
argument-rgx =[a-z_][a-z0-9_]{2,30}$
217
195
218
- # Naming hint for argument names
219
- argument-name-hint =[a-z_][a-z0-9_]{2,30}$
220
-
221
196
# Regular expression matching correct class attribute names
222
197
class-attribute-rgx =([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
223
198
224
- # Naming hint for class attribute names
225
- class-attribute-name-hint =([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
226
-
227
199
# Regular expression matching correct inline iteration names
228
200
inlinevar-rgx =[A-Za-z_][A-Za-z0-9_]*$
229
201
230
- # Naming hint for inline iteration names
231
- inlinevar-name-hint =[A-Za-z_][A-Za-z0-9_]*$
232
-
233
202
# Regular expression matching correct class names
234
203
class-rgx =[A-Z_][a-zA-Z0-9]+$
235
204
236
- # Naming hint for class names
237
- class-name-hint =[A-Z_][a-zA-Z0-9]+$
238
-
239
205
# Regular expression matching correct module names
240
206
module-rgx =(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
241
207
242
- # Naming hint for module names
243
- module-name-hint =(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
244
-
245
208
# Regular expression matching correct method names
246
209
method-rgx =[a-z_][a-z0-9_]{2,}$
247
210
248
- # Naming hint for method names
249
- method-name-hint =[a-z_][a-z0-9_]{2,}$
250
-
251
211
# Regular expression which should only match function or class names that do
252
212
# not require a docstring.
253
213
no-docstring-rgx =__.*__
@@ -375,9 +335,3 @@ int-import-graph=
375
335
# Exceptions that will emit a warning when being caught. Defaults to
376
336
# "Exception"
377
337
overgeneral-exceptions =Exception
378
-
379
-
380
- [pylint.DEPRECATED_BUILTINS]
381
-
382
- # List of builtins function names that should not be used, separated by a comma
383
- bad-functions =map,input
0 commit comments