From ba3551e3a89875e9b00f4dcd0788e2d5fa3d28bf Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 21 Aug 2022 22:18:48 +0200 Subject: [PATCH] fix linting for logging --- setup.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 5904e7d..243da9b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,8 +8,9 @@ # D105: Missing docstring in magic method # D107: Missing docstring in __init__ # D202: No blank lines allowed after function docstring -# W503:Line break occurred before a binary operator -ignore = D100, D101, D102, D103, D107, D202, W503 +# G001: Logging statements should not use string.format() for their first argument +# W503: Line break occurred before a binary operator +ignore = D100, D101, D102, D103, D107, D202, G001, W503 max-line-length = 99 inline-quotes = double exclude = .git, __pycache__, build, dist, test, *.pyc, *.egg-info, .cache, .eggs, env*