From dbd9cb022a2350a462390f5c5359c30767d58249 Mon Sep 17 00:00:00 2001 From: Satoru SATOH Date: Tue, 21 May 2024 00:00:39 +0900 Subject: [PATCH] fix: update configurations for flake8 --- setup.cfg | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index b9ea3abf..cfec1c58 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,11 +5,14 @@ dists = clean --all sdist bdist_wheel [flake8] per-file-ignores = - tests/res/*/*/*/*.py: W605, B018 - tests/res/*/*/*/*/*.py: W605, B018 + tests/res/*/*/*/*.py: W605 + tests/res/*/*/*/*/*.py: W605 + tests/res/*/*/*/*/*/*.py: W605 max-complexity = 10 select = C,E,F,W,B # .. seealso:: https://www.flake8rules.com/rules/W504.html -ignore = W503 +ignore = + W503 + B018