Adding upstream version 0.13.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
c0ae77e0f6
commit
ecf5ca3300
272 changed files with 33172 additions and 0 deletions
32
pylintrc
Normal file
32
pylintrc
Normal file
|
@ -0,0 +1,32 @@
|
|||
[MESSAGES CONTROL]
|
||||
disable=
|
||||
invalid-name,
|
||||
logging-fstring-interpolation,
|
||||
fixme
|
||||
|
||||
[BASIC]
|
||||
good-names=runCmds, i, y, t, c, x, e, fd, ip, v
|
||||
|
||||
[DESIGN]
|
||||
max-statements=61
|
||||
max-returns=8
|
||||
max-locals=23
|
||||
max-args=6
|
||||
|
||||
[FORMAT]
|
||||
max-line-length=165
|
||||
max-module-lines=1700
|
||||
|
||||
[SIMILARITIES]
|
||||
# making similarity lines limit a bit higher than default 4
|
||||
min-similarity-lines=10
|
||||
|
||||
[TYPECHECK]
|
||||
# https://stackoverflow.com/questions/49680191/click-and-pylint
|
||||
signature-mutators=click.decorators.option
|
||||
|
||||
[MAIN]
|
||||
load-plugins=pylint_pydantic
|
||||
extension-pkg-whitelist=pydantic
|
||||
ignore-paths = ^tests/units/anta_tests/.*/data.py$,
|
||||
^tests/units/anta_tests/routing/.*/data.py$,
|
Loading…
Add table
Add a link
Reference in a new issue