diff --git a/setup.cfg b/setup.cfg index d2c4a4e51c3..7919908e8ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -147,11 +147,12 @@ markers = [flake8] ignore = - E203 # whitespace before ':' - doesn't work well with black - E402 # module level import not at top of file - E501 # line too long - let black worry about that - E731 # do not assign a lambda expression, use a def - W503 # line break before binary operator + # E203: whitespace before ':' - doesn't work well with black + # E402: module level import not at top of file + # E501: line too long - let black worry about that + # E731: do not assign a lambda expression, use a def + # W503: line break before binary operator + E203, E402, E501, E731, W503 exclude = .eggs doc