summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg15
1 files changed, 10 insertions, 5 deletions
diff --git a/setup.cfg b/setup.cfg
index 5a88bef..843f922 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,8 +4,13 @@ select = E,F,W,C4,C90
exclude = __pycache__,.tox,.venv,build,dist
# Defer these rules to black:
ignore =
- E203 # whitespace before ':'
- E225 # missing whitespace around operator
- E501 # line too long
- W503 # line break before binary operator
- W504 # line break after binary operator
+ # whitespace before ':'
+ E203
+ # missing whitespace around operator
+ E225
+ # line too long
+ E501
+ # line break before binary operator
+ W503
+ # line break after binary operator
+ W504