From 2c44f7d773d6a15464235e0ced292f344bbea0e6 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Sat, 3 Dec 2022 16:22:49 +0100 Subject: [PATCH] Update flake8 comments to "new" format --- setup.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 06e8960..4e8257e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,8 +11,10 @@ addopts = [flake8] application-import-names = tests,vdirsyncer extend-ignore = - E203, # Black-incompatible colon spacing. - W503, # Line jump before binary operator. + # Black-incompatible colon spacing. + E203, + # Line jump before binary operator. + W503, I100, I202 max-line-length = 88