diff --git a/setup.cfg b/setup.cfg index 96111b23..1295389f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,3 +6,7 @@ max-line-length = 100 ignore = # do not use bare 'except' E722, + # don't know why this was ever even an option, 1+1 should be possible. + E226, + # line break before binary operator + W503,