Simon Zeyer c0117e6699
Some checks failed
build / Build Checkmk package (push) Failing after 32s
build-release / Build Release Package (push) Failing after 35s
Lint / flake8_py3 (push) Failing after 16s
pytest / pytest (push) Failing after 33s
init first version of pbs_special_agent
2026-03-04 21:13:32 +00:00

37 lines
1.5 KiB
INI

[flake8]
ignore=
################################################################################################
# Black is our formatting tool, so ignore any formatting-related findings.
################################################################################################
# whitespace before ':'
E203,
# line too long
E501,
# line break before binary operator
W503,
# multiple statements on one line (colon)
E701,
# multiple statements on one line (def)
E704,
################################################################################################
# Ignore findings which are incompatible with our "import" techonology.
################################################################################################
# 'FOO' imported but unused
F401,
# module level import not at top of file
E402,
# 'from FOO import *' used; unable to detect undefined names
F403,
# 'FOO' may be undefined, or defined from star imports: BAR
F405,
################################################################################################
# We should probably have a look at these findings.
################################################################################################
# do not assign a lambda expression, use a def
E731,
# ambiguous variable name 'FOO'
E741,
# undefined name 'FOO'
F821,
# local variable 'FOO' is assigned to but never used
F841,