summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index cf7545717..b6ebd2b77 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,10 +13,12 @@ license_files =
# E203: Whitespace before ':'
# W503: Line break occurred before a binary operator
# E501: Line too long
+# B028: consider using the `!r` conversion flag
ignore =
E203,
W503,
- E501
+ E501,
+ B028,
max-line-length=88
max-complexity=39
# Required for flake8-typing-imports (v1.12.0)