From 1c4d9324bd71015f9bf4612801dd9589f28cb097 Mon Sep 17 00:00:00 2001 From: Teemu Ikonen Date: Fri, 10 Feb 2023 14:02:25 +0200 Subject: [PATCH] setup.cfg: Ignore Q000 (quotes) in flake8 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 93c169f..8fa8cf4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [flake8] exclude=.git,__pycache__,build max-line-length = 88 -ignore = BLK100, CCR001, D100, D101, D102, D103, D107, I201, W503 +ignore = BLK100, CCR001, D100, D101, D102, D103, D107, I201, Q000, W503 [pycodestyle] exclude=.git,__pycache__,build