itw-python-builder 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,743 @@
1
+ [MAIN]
2
+
3
+ # Analyse import fallback blocks. This can be used to support both Python 2 and
4
+ # 3 compatible code, which means that the block might have code that exists
5
+ # only in one or another interpreter, leading to false positives when analysed.
6
+ analyse-fallback-blocks=no
7
+
8
+ # Load and enable all available extensions. Use --list-extensions to see a list
9
+ # all available extensions.
10
+ #enable-all-extensions=
11
+
12
+ # In error mode, messages with a category besides ERROR or FATAL are
13
+ # suppressed, and no reports are done by default. Error mode is compatible with
14
+ # disabling specific errors.
15
+ #errors-only=
16
+
17
+ # Always return a 0 (non-error) status code, even if lint errors are found.
18
+ # This is primarily useful in continuous integration scripts.
19
+ #exit-zero=
20
+
21
+ # A comma-separated list of package or module names from where C extensions may
22
+ # be loaded. Extensions are loading into the active Python interpreter and may
23
+ # run arbitrary code.
24
+ extension-pkg-allow-list=
25
+
26
+ # A comma-separated list of package or module names from where C extensions may
27
+ # be loaded. Extensions are loading into the active Python interpreter and may
28
+ # run arbitrary code. (This is an alternative name to extension-pkg-allow-list
29
+ # for backward compatibility.)
30
+ extension-pkg-whitelist=
31
+
32
+ # Return non-zero exit code if any of these messages/categories are detected,
33
+ # even if score is above --fail-under value. Syntax same as enable. Messages
34
+ # specified are enabled, while categories only check already-enabled messages.
35
+ fail-on=
36
+
37
+ # Specify a score threshold under which the program will exit with error.
38
+ fail-under=8.0
39
+
40
+ # Interpret the stdin as a python script, whose filename needs to be passed as
41
+ # the module_or_package argument.
42
+ #from-stdin=
43
+
44
+ # Files or directories to be skipped. They should be base names, not paths.
45
+ ignore=CVS,Dockerfile,sonar-project.properties,requirements.txt,dev-requirements.txt,manage.py,wsgi.py,coverage.xml,README.md,.venv,venv
46
+
47
+ # Add files or directories matching the regular expressions patterns to the
48
+ # ignore-list. The regex matches against paths and can be in Posix or Windows
49
+ # format. Because '\' represents the directory delimiter on Windows systems, it
50
+ # can't be used as an escape character.
51
+ ignore-paths=.*\.venv.*,
52
+ .*venv.*,
53
+ .*migrations.*
54
+
55
+ # Files or directories matching the regular expression patterns are skipped.
56
+ # The regex matches against base names, not paths. The default value ignores
57
+ # Emacs file locks
58
+ ignore-patterns=^\.#
59
+
60
+ # List of module names for which member attributes should not be checked
61
+ # (useful for modules/projects where namespaces are manipulated during runtime
62
+ # and thus existing member attributes cannot be deduced by static analysis). It
63
+ # supports qualified module names, as well as Unix pattern matching.
64
+ ignored-modules=
65
+
66
+ # Python code to execute, usually for sys.path manipulation such as
67
+ # pygtk.require().
68
+ #init-hook=
69
+
70
+ # Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
71
+ # number of processors available to use, and will cap the count on Windows to
72
+ # avoid hangs.
73
+ jobs=1
74
+
75
+ # Control the amount of potential inferred values when inferring a single
76
+ # object. This can help the performance when dealing with large functions or
77
+ # complex, nested conditions.
78
+ limit-inference-results=100
79
+
80
+ # List of plugins (as comma separated values of python module names) to load,
81
+ # usually to register additional checkers.
82
+ load-plugins=pylint_django,
83
+ pylint.extensions.check_elif,
84
+ pylint.extensions.bad_builtin,
85
+ pylint.extensions.docparams,
86
+ pylint.extensions.for_any_all,
87
+ pylint.extensions.set_membership,
88
+ pylint.extensions.code_style,
89
+ pylint.extensions.overlapping_exceptions,
90
+ pylint.extensions.typing,
91
+ pylint.extensions.redefined_variable_type,
92
+ pylint.extensions.comparison_placement
93
+
94
+ # Pickle collected data for later comparisons.
95
+ persistent=yes
96
+
97
+ # Minimum Python version to use for version dependent checks. Will default to
98
+ # the version used to run pylint.
99
+ py-version=3.7.2
100
+
101
+ # Discover python modules and packages in the file system subtree.
102
+ recursive=no
103
+
104
+ # Allow loading of arbitrary C extensions. Extensions are imported into the
105
+ # active Python interpreter and may run arbitrary code.
106
+ unsafe-load-any-extension=no
107
+
108
+ # In verbose mode, extra non-checker-related info will be displayed.
109
+ #verbose=
110
+
111
+ # Override per project via CLI: --django-settings-module=myproject.settings
112
+ django-settings-module=backend.settings
113
+
114
+ [BASIC]
115
+
116
+ # Naming style matching correct argument names.
117
+ argument-naming-style=snake_case
118
+
119
+ # Regular expression matching correct argument names. Overrides argument-
120
+ # naming-style. If left empty, argument names will be checked with the set
121
+ # naming style.
122
+ argument-rgx=[a-z_][a-z0-9_]{2,30}$
123
+
124
+ # Naming style matching correct attribute names.
125
+ attr-naming-style=snake_case
126
+
127
+ # Regular expression matching correct attribute names. Overrides attr-naming-
128
+ # style. If left empty, attribute names will be checked with the set naming
129
+ # style.
130
+ attr-rgx=[a-z_][a-z0-9_]{2,}$
131
+
132
+ # Bad variable names which should always be refused, separated by a comma.
133
+ bad-names=foo,
134
+ bar,
135
+ baz,
136
+ toto,
137
+ tutu,
138
+ tata
139
+
140
+ # Bad variable names regexes, separated by a comma. If names match any regex,
141
+ # they will always be refused
142
+ bad-names-rgxs=
143
+
144
+ # Naming style matching correct class attribute names.
145
+ class-attribute-naming-style=any
146
+
147
+ # Regular expression matching correct class attribute names. Overrides class-
148
+ # attribute-naming-style. If left empty, class attribute names will be checked
149
+ # with the set naming style.
150
+ class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,30}|(__.*__))$
151
+
152
+ # Naming style matching correct class constant names.
153
+ class-const-naming-style=UPPER_CASE
154
+
155
+ # Regular expression matching correct class constant names. Overrides class-
156
+ # const-naming-style. If left empty, class constant names will be checked with
157
+ # the set naming style.
158
+ #class-const-rgx=
159
+
160
+ # Naming style matching correct class names.
161
+ class-naming-style=PascalCase
162
+
163
+ # Regular expression matching correct class names. Overrides class-naming-
164
+ # style. If left empty, class names will be checked with the set naming style.
165
+ class-rgx=[A-Z_][a-zA-Z0-9]+$
166
+
167
+ # Naming style matching correct constant names.
168
+ const-naming-style=UPPER_CASE
169
+
170
+ # Regular expression matching correct constant names. Overrides const-naming-
171
+ # style. If left empty, constant names will be checked with the set naming
172
+ # style.
173
+ const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
174
+
175
+ # Minimum line length for functions/classes that require docstrings, shorter
176
+ # ones are exempt.
177
+ docstring-min-length=-1
178
+
179
+ # Naming style matching correct function names.
180
+ function-naming-style=snake_case
181
+
182
+ # Regular expression matching correct function names. Overrides function-
183
+ # naming-style. If left empty, function names will be checked with the set
184
+ # naming style.
185
+ function-rgx=[a-z_][a-z0-9_]{2,30}$
186
+
187
+ # Good variable names which should always be accepted, separated by a comma.
188
+ good-names=i,
189
+ j,
190
+ k,
191
+ ex,
192
+ Run,
193
+ _,
194
+ pk,
195
+ qs,
196
+ id,
197
+ db,
198
+ e,
199
+ f,
200
+ ct,
201
+ rs,
202
+ fn
203
+
204
+ # Good variable names regexes, separated by a comma. If names match any regex,
205
+ # they will always be accepted
206
+ good-names-rgxs=
207
+
208
+ # Include a hint for the correct naming format with invalid-name.
209
+ include-naming-hint=no
210
+
211
+ # Naming style matching correct inline iteration names.
212
+ inlinevar-naming-style=any
213
+
214
+ # Regular expression matching correct inline iteration names. Overrides
215
+ # inlinevar-naming-style. If left empty, inline iteration names will be checked
216
+ # with the set naming style.
217
+ inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
218
+
219
+ # Naming style matching correct method names.
220
+ method-naming-style=snake_case
221
+
222
+ # Regular expression matching correct method names. Overrides method-naming-
223
+ # style. If left empty, method names will be checked with the set naming style.
224
+ method-rgx=[a-z_][a-z0-9_]{2,}$
225
+
226
+ # Naming style matching correct module names.
227
+ module-naming-style=snake_case
228
+
229
+ # Regular expression matching correct module names. Overrides module-naming-
230
+ # style. If left empty, module names will be checked with the set naming style.
231
+ module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
232
+
233
+ # Colon-delimited sets of names that determine each other's naming style when
234
+ # the name regexes allow several styles.
235
+ name-group=
236
+
237
+ # Regular expression which should only match function or class names that do
238
+ # not require a docstring.
239
+ no-docstring-rgx=__.*__
240
+
241
+ # List of decorators that produce properties, such as abc.abstractproperty. Add
242
+ # to this list to register other decorators that produce valid properties.
243
+ # These decorators are taken in consideration only for invalid-name.
244
+ property-classes=abc.abstractproperty
245
+
246
+ # Regular expression matching correct type variable names. If left empty, type
247
+ # variable names will be checked with the set naming style.
248
+ #typevar-rgx=
249
+
250
+ # Naming style matching correct variable names.
251
+ variable-naming-style=snake_case
252
+
253
+ # Regular expression matching correct variable names. Overrides variable-
254
+ # naming-style. If left empty, variable names will be checked with the set
255
+ # naming style.
256
+ variable-rgx=[a-z_][a-z0-9_]{2,30}$
257
+
258
+
259
+ [CLASSES]
260
+
261
+ # Warn about protected attribute access inside special methods
262
+ check-protected-access-in-special-methods=no
263
+
264
+ # List of method names used to declare (i.e. assign) instance attributes.
265
+ defining-attr-methods=__init__,
266
+ __new__,
267
+ setUp,
268
+ __post_init__
269
+
270
+ # List of member names, which should be excluded from the protected access
271
+ # warning.
272
+ exclude-protected=_asdict,
273
+ _fields,
274
+ _replace,
275
+ _source,
276
+ _make
277
+
278
+ # List of valid names for the first argument in a class method.
279
+ valid-classmethod-first-arg=cls
280
+
281
+ # List of valid names for the first argument in a metaclass class method.
282
+ valid-metaclass-classmethod-first-arg=mcs
283
+
284
+
285
+ [CODE_STYLE]
286
+
287
+ # Max line length for which to sill emit suggestions. Used to prevent optional
288
+ # suggestions which would get split by a code formatter (e.g., black). Will
289
+ # default to the setting for ``max-line-length``.
290
+ max-line-length-suggestions=0
291
+
292
+
293
+ [DEPRECATED_BUILTINS]
294
+
295
+ # List of builtins function names that should not be used, separated by a comma
296
+ bad-functions=map,
297
+ input
298
+
299
+
300
+ [DESIGN]
301
+
302
+ # List of regular expressions of class ancestor names to ignore when counting
303
+ # public methods (see R0903)
304
+ exclude-too-few-public-methods=
305
+
306
+ # List of qualified class names to ignore when counting class parents (see
307
+ # R0901)
308
+ ignored-parents=
309
+
310
+ # Maximum number of arguments for function / method.
311
+ max-args=10
312
+
313
+ # Maximum number of attributes for a class (see R0902).
314
+ max-attributes=11
315
+
316
+ # Maximum number of boolean expressions in an if statement (see R0916).
317
+ max-bool-expr=5
318
+
319
+ # Maximum number of branch for function / method body.
320
+ max-branches=27
321
+
322
+ # Maximum number of locals for function / method body.
323
+ max-locals=25
324
+
325
+ # Maximum number of parents for a class (see R0901).
326
+ max-parents=7
327
+
328
+ # Maximum number of public methods for a class (see R0904).
329
+ max-public-methods=25
330
+
331
+ # Maximum number of return / yield for function / method body.
332
+ max-returns=11
333
+
334
+ # Maximum number of statements in function / method body.
335
+ max-statements=100
336
+
337
+ # Minimum number of public methods for a class (see R0903).
338
+ min-public-methods=2
339
+
340
+
341
+ [EXCEPTIONS]
342
+
343
+ # Exceptions that will emit a warning when caught.
344
+ overgeneral-exceptions=builtins.Exception
345
+
346
+
347
+ [FORMAT]
348
+
349
+ # Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
350
+ expected-line-ending-format=
351
+
352
+ # Regexp for a line that is allowed to be longer than the limit.
353
+ ignore-long-lines=^\s*(# )?<?https?://\S+>?$
354
+
355
+ # Number of spaces of indent required inside a hanging or continued line.
356
+ indent-after-paren=4
357
+
358
+ # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
359
+ # tab).
360
+ indent-string=' '
361
+
362
+ # Maximum number of characters on a single line.
363
+ max-line-length=160
364
+
365
+ # Maximum number of lines in a module.
366
+ max-module-lines=2000
367
+
368
+ # Allow the body of a class to be on the same line as the declaration if body
369
+ # contains single statement.
370
+ single-line-class-stmt=no
371
+
372
+ # Allow the body of an if to be on the same line as the test if there is no
373
+ # else.
374
+ single-line-if-stmt=no
375
+
376
+
377
+ [IMPORTS]
378
+
379
+ # List of modules that can be imported at any level, not just the top level
380
+ # one.
381
+ allow-any-import-level=
382
+
383
+ # Allow wildcard imports from modules that define __all__.
384
+ allow-wildcard-with-all=no
385
+
386
+ # Deprecated modules which should not be used, separated by a comma.
387
+ deprecated-modules=regsub,
388
+ TERMIOS,
389
+ Bastion,
390
+ rexec
391
+
392
+ # Output a graph (.gv or any supported image format) of external dependencies
393
+ # to the given file (report RP0402 must not be disabled).
394
+ ext-import-graph=
395
+
396
+ # Output a graph (.gv or any supported image format) of all (i.e. internal and
397
+ # external) dependencies to the given file (report RP0402 must not be
398
+ # disabled).
399
+ import-graph=
400
+
401
+ # Output a graph (.gv or any supported image format) of internal dependencies
402
+ # to the given file (report RP0402 must not be disabled).
403
+ int-import-graph=
404
+
405
+ # Force import order to recognize a module as part of the standard
406
+ # compatibility libraries.
407
+ known-standard-library=
408
+
409
+ # Force import order to recognize a module as part of a third party library.
410
+ known-third-party=enchant
411
+
412
+ # Couples of modules and preferred modules, separated by a comma.
413
+ preferred-modules=
414
+
415
+
416
+ [LOGGING]
417
+
418
+ # The type of string formatting that logging methods do. `old` means using %
419
+ # formatting, `new` is for `{}` formatting.
420
+ logging-format-style=old
421
+
422
+ # Logging modules to check that the string format arguments are in logging
423
+ # function parameter format.
424
+ logging-modules=logging
425
+
426
+
427
+ [MESSAGES CONTROL]
428
+
429
+ # Only show warnings with the listed confidence levels. Leave empty to show
430
+ # all. Valid levels: HIGH, CONTROL_FLOW, INFERENCE, INFERENCE_FAILURE,
431
+ # UNDEFINED.
432
+ confidence=HIGH,
433
+ CONTROL_FLOW,
434
+ INFERENCE,
435
+ INFERENCE_FAILURE,
436
+ UNDEFINED
437
+
438
+ # Disable the message, report, category or checker with the given id(s). You
439
+ # can either give multiple identifiers separated by comma (,) or put this
440
+ # option multiple times (only on the command line, not in the configuration
441
+ # file where it should appear only once). You can also use "--disable=all" to
442
+ # disable everything first and then re-enable specific checks. For example, if
443
+ # you want to run only the similarities checker, you can use "--disable=all
444
+ # --enable=similarities". If you want to run only the classes checker, but have
445
+ # no Warning level messages displayed, use "--disable=all --enable=classes
446
+ # --disable=W".
447
+ disable=raw-checker-failed,
448
+ bad-inline-option,
449
+ locally-disabled,
450
+ file-ignored,
451
+ suppressed-message,
452
+ deprecated-pragma,
453
+ attribute-defined-outside-init,
454
+ invalid-name,
455
+ missing-module-docstring,
456
+ missing-class-docstring,
457
+ missing-function-docstring,
458
+ protected-access,
459
+ too-few-public-methods,
460
+ line-too-long,
461
+ too-many-lines,
462
+ trailing-whitespace,
463
+ missing-final-newline,
464
+ trailing-newlines,
465
+ bad-indentation,
466
+ unnecessary-semicolon,
467
+ multiple-statements,
468
+ superfluous-parens,
469
+ mixed-line-endings,
470
+ unexpected-line-ending-format,
471
+ fixme,
472
+ cyclic-import,
473
+ missing-param-doc,
474
+ missing-type-doc,
475
+ missing-return-doc,
476
+ missing-return-type-doc,
477
+ missing-raises-doc,
478
+ missing-any-param-doc,
479
+ wrong-import-order,
480
+ ungrouped-imports,
481
+ wrong-import-position,
482
+ import-outside-toplevel,
483
+ too-many-ancestors,
484
+ consider-using-f-string,
485
+ consider-using-dict-items,
486
+ consider-iterating-dictionary,
487
+ unused-argument,
488
+ wildcard-import,
489
+ unused-wildcard-import,
490
+ super-with-arguments,
491
+ trailing-comma-tuple,
492
+ too-many-positional-arguments,
493
+ broad-exception-raised,
494
+ broad-exception-caught,
495
+ logging-fstring-interpolation,
496
+ consider-using-in,
497
+ else-if-used,
498
+ too-many-nested-blocks,
499
+ too-many-arguments
500
+
501
+ # Enable the message, report, category or checker with the given id(s). You can
502
+ # either give multiple identifier separated by comma (,) or put this option
503
+ # multiple time (only on the command line, not in the configuration file where
504
+ # it should appear only once). See also the "--disable" option for examples.
505
+ enable=useless-suppression,
506
+ use-symbolic-message-instead,
507
+ c-extension-no-member
508
+
509
+
510
+ [METHOD_ARGS]
511
+
512
+ # List of qualified names (i.e., library.method) which require a timeout
513
+ # parameter e.g. 'requests.api.get,requests.api.post'
514
+ timeout-methods=requests.api.delete,requests.api.get,requests.api.head,requests.api.options,requests.api.patch,requests.api.post,requests.api.put,requests.api.request
515
+
516
+
517
+ [MISCELLANEOUS]
518
+
519
+ # List of note tags to take in consideration, separated by a comma.
520
+ notes=FIXME,
521
+ XXX,
522
+ TODO
523
+
524
+ # Regular expression of note tags to take in consideration.
525
+ notes-rgx=
526
+
527
+
528
+ [PARAMETER_DOCUMENTATION]
529
+
530
+ # Whether to accept totally missing parameter documentation in the docstring of
531
+ # a function that has parameters.
532
+ accept-no-param-doc=yes
533
+
534
+ # Whether to accept totally missing raises documentation in the docstring of a
535
+ # function that raises an exception.
536
+ accept-no-raise-doc=yes
537
+
538
+ # Whether to accept totally missing return documentation in the docstring of a
539
+ # function that returns a statement.
540
+ accept-no-return-doc=yes
541
+
542
+ # Whether to accept totally missing yields documentation in the docstring of a
543
+ # generator.
544
+ accept-no-yields-doc=yes
545
+
546
+ # If the docstring type cannot be guessed the specified docstring type will be
547
+ # used.
548
+ default-docstring-type=default
549
+
550
+
551
+ [REFACTORING]
552
+
553
+ # Maximum number of nested blocks for function / method body
554
+ max-nested-blocks=5
555
+
556
+ # Complete name of functions that never returns. When checking for
557
+ # inconsistent-return-statements if a never returning function is called then
558
+ # it will be considered as an explicit return statement and no message will be
559
+ # printed.
560
+ never-returning-functions=sys.exit,argparse.parse_error
561
+
562
+
563
+ [REPORTS]
564
+
565
+ # Python expression which should return a score less than or equal to 10. You
566
+ # have access to the variables 'fatal', 'error', 'warning', 'refactor',
567
+ # 'convention', and 'info' which contain the number of messages in each
568
+ # category, as well as 'statement' which is the total number of statements
569
+ # analyzed. This score is used by the global evaluation report (RP0004).
570
+ evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10))
571
+
572
+ # Template used to display messages. This is a python new-style format string
573
+ # used to format the message information. See doc for all details.
574
+ msg-template=
575
+
576
+ # Set the output format. Available formats are text, parseable, colorized, json
577
+ # and msvs (visual studio). You can also give a reporter class, e.g.
578
+ # mypackage.mymodule.MyReporterClass.
579
+ #output-format=
580
+
581
+ # Tells whether to display a full report or only the messages.
582
+ reports=no
583
+
584
+ # Activate the evaluation score.
585
+ score=yes
586
+
587
+
588
+ [SIMILARITIES]
589
+
590
+ # Comments are removed from the similarity computation
591
+ ignore-comments=yes
592
+
593
+ # Docstrings are removed from the similarity computation
594
+ ignore-docstrings=yes
595
+
596
+ # Imports are removed from the similarity computation
597
+ ignore-imports=yes
598
+
599
+ # Signatures are removed from the similarity computation
600
+ ignore-signatures=yes
601
+
602
+ # Minimum lines number of a similarity.
603
+ min-similarity-lines=6
604
+
605
+
606
+ [SPELLING]
607
+
608
+ # Limits count of emitted suggestions for spelling mistakes.
609
+ max-spelling-suggestions=2
610
+
611
+ # Spelling dictionary name. Available dictionaries: none. To make it work,
612
+ # install the 'python-enchant' package.
613
+ spelling-dict=
614
+
615
+ # List of comma separated words that should be considered directives if they
616
+ # appear at the beginning of a comment and should not be checked.
617
+ spelling-ignore-comment-directives=fmt: on,fmt: off,noqa:,noqa,nosec,isort:skip,mypy:,pragma:,# noinspection
618
+
619
+ # List of comma separated words that should not be checked.
620
+ spelling-ignore-words=
621
+
622
+ # A path to a file that contains the private dictionary; one word per line.
623
+ spelling-private-dict-file=.pyenchant_pylint_custom_dict.txt
624
+
625
+ # Tells whether to store unknown words to the private dictionary (see the
626
+ # --spelling-private-dict-file option) instead of raising a message.
627
+ spelling-store-unknown-words=no
628
+
629
+
630
+ [STRING]
631
+
632
+ # This flag controls whether inconsistent-quotes generates a warning when the
633
+ # character used as a quote delimiter is used inconsistently within a module.
634
+ check-quote-consistency=no
635
+
636
+ # This flag controls whether the implicit-str-concat should generate a warning
637
+ # on implicit string concatenation in sequences defined over several lines.
638
+ check-str-concat-over-line-jumps=no
639
+
640
+
641
+ [TYPECHECK]
642
+
643
+ # List of decorators that produce context managers, such as
644
+ # contextlib.contextmanager. Add to this list to register other decorators that
645
+ # produce valid context managers.
646
+ contextmanager-decorators=contextlib.contextmanager
647
+
648
+ # List of members which are set dynamically and missed by pylint inference
649
+ # system, and so shouldn't trigger E1101 when accessed. Python regular
650
+ # expressions are accepted.
651
+ generated-members=REQUEST,
652
+ acl_users,
653
+ aq_parent,
654
+ argparse.Namespace,
655
+ objects,
656
+ DoesNotExist,
657
+ id,
658
+ pk,
659
+ MultipleObjectsReturned
660
+
661
+ # Tells whether to warn about missing members when the owner of the attribute
662
+ # is inferred to be None.
663
+ ignore-none=yes
664
+
665
+ # This flag controls whether pylint should warn about no-member and similar
666
+ # checks whenever an opaque object is returned when inferring. The inference
667
+ # can return multiple potential results while evaluating a Python object, but
668
+ # some branches might not be evaluated, which results in partial inference. In
669
+ # that case, it might be useful to still emit no-member and other checks for
670
+ # the rest of the inferred objects.
671
+ ignore-on-opaque-inference=yes
672
+
673
+ # List of symbolic message names to ignore for Mixin members.
674
+ ignored-checks-for-mixins=no-member,
675
+ not-async-context-manager,
676
+ not-context-manager,
677
+ attribute-defined-outside-init
678
+
679
+ # List of class names for which member attributes should not be checked (useful
680
+ # for classes with dynamically set attributes). This supports the use of
681
+ # qualified names.
682
+ ignored-classes=SQLObject,optparse.Values,thread._local,_thread._local,WSGIRequest
683
+
684
+ # Show a hint with possible names when a member name was not found. The aspect
685
+ # of finding the hint is based on edit distance.
686
+ missing-member-hint=yes
687
+
688
+ # The minimum edit distance a name should have in order to be considered a
689
+ # similar match for a missing member name.
690
+ missing-member-hint-distance=1
691
+
692
+ # The total number of similar names that should be taken in consideration when
693
+ # showing a hint for a missing member.
694
+ missing-member-max-choices=1
695
+
696
+ # Regex pattern to define which classes are considered mixins.
697
+ mixin-class-rgx=.*MixIn
698
+
699
+ # List of decorators that change the signature of a decorated function.
700
+ signature-mutators=
701
+
702
+
703
+ [TYPING]
704
+
705
+ # Set to ``no`` if the app / library does **NOT** need to support runtime
706
+ # introspection of type annotations. If you use type annotations
707
+ # **exclusively** for type checking of an application, you're probably fine.
708
+ # For libraries, evaluate if some users want to access the type hints at
709
+ # runtime first, e.g., through ``typing.get_type_hints``. Applies to Python
710
+ # versions 3.7 - 3.9
711
+ runtime-typing=no
712
+
713
+
714
+ [VARIABLES]
715
+
716
+ # List of additional names supposed to be defined in builtins. Remember that
717
+ # you should avoid defining new builtins when possible.
718
+ additional-builtins=
719
+
720
+ # Tells whether unused global variables should be treated as a violation.
721
+ allow-global-unused-variables=yes
722
+
723
+ # List of names allowed to shadow builtins
724
+ allowed-redefined-builtins=
725
+
726
+ # List of strings which can identify a callback function by name. A callback
727
+ # name must start or end with one of those strings.
728
+ callbacks=cb_,
729
+ _cb
730
+
731
+ # A regular expression matching the name of dummy variables (i.e. expected to
732
+ # not be used).
733
+ dummy-variables-rgx=_$|dummy
734
+
735
+ # Argument names that match this expression will be ignored.
736
+ ignored-argument-names=_.*
737
+
738
+ # Tells whether we should check for unused import in __init__ files.
739
+ init-import=no
740
+
741
+ # List of qualified module names which can have objects that can redefine
742
+ # builtins.
743
+ redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io