From cd63ed0dd2d90cb994cb45e4116b1becf7ae1086 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Wed, 9 Oct 2024 23:19:37 +0300 Subject: [PATCH] test: Black compatible Flake8 configuration [ruff-plugin] --- setup.cfg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.cfg b/setup.cfg index 9c8e248bd..2c193089e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -98,8 +98,14 @@ ignore = D400 # D415 First line should end with a period, question mark, or exclamation point D415 + # E203 Whitespace before ':' + E203 # E231 missing whitespace after ',' E231 + # E501 Line too long (82 > 79 characters) + E501 + # E701 Multiple statements on one line (colon) + E701 # W503 line break before binary operator W503 # Darglint options when run as a Flake8 plugin: