230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
docstring-min-length=-1
# Naming style matching correct function names
function-naming-style=camelCase
# Regular expression matching correct function names. Overrides function-
# naming-style
function-rgx=^[a-z]\w+|^_*
# Good variable names which should always be accepted, separated by a comma
good-names=i,
i1,
i2,
j,
k,
s,
s1,
s2,
sx,
sf,
sp,
spf,
c,
c1,
c2,
n,
|
|
<
|
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
docstring-min-length=-1
# Naming style matching correct function names
function-naming-style=camelCase
# Regular expression matching correct function names. Overrides function-
# naming-style
function-rgx=^[a-z]\w+|^_
# Good variable names which should always be accepted, separated by a comma
good-names=i,
i1,
i2,
j,
k,
s,
s1,
s2,
sf,
sp,
spf,
c,
c1,
c2,
n,
|
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
|
#inlinevar-rgx=
# Naming style matching correct method names
method-naming-style=camelCase
# Regular expression matching correct method names. Overrides method-naming-
# style
#method-rgx=
# Naming style matching correct module names
module-naming-style=snake_case
# Regular expression matching correct module names. Overrides module-naming-
# style
#module-rgx=
|
|
|
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
#inlinevar-rgx=
# Naming style matching correct method names
method-naming-style=camelCase
# Regular expression matching correct method names. Overrides method-naming-
# style
#method-rgx=^test_
# Naming style matching correct module names
module-naming-style=snake_case
# Regular expression matching correct module names. Overrides module-naming-
# style
#module-rgx=
|
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
|
# tab).
indent-string=' '
# Maximum number of characters on a single line.
max-line-length=200
# Maximum number of lines in a module
max-module-lines=1000
# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator
|
|
|
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
|
# tab).
indent-string=' '
# Maximum number of characters on a single line.
max-line-length=200
# Maximum number of lines in a module
max-module-lines=5000
# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator
|
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
|
# List of member names, which should be excluded from the protected access
# warning.
exclude-protected=_asdict,
_fields,
_replace,
_source,
_make
# List of valid names for the first argument in a class method.
valid-classmethod-first-arg=cls
# List of valid names for the first argument in a metaclass class method.
valid-metaclass-classmethod-first-arg=mcs
|
|
>
>
>
|
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
|
# List of member names, which should be excluded from the protected access
# warning.
exclude-protected=_asdict,
_fields,
_replace,
_source,
_make,
_getTags,
_hasConjWithTags,
_getConjWithTags
# List of valid names for the first argument in a class method.
valid-classmethod-first-arg=cls
# List of valid names for the first argument in a metaclass class method.
valid-metaclass-classmethod-first-arg=mcs
|