summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 5 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index baa6a03967..6cbe1a616d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,7 +6,11 @@ ignore =
# Conflicts with our yapf config
E231
per_file_ignores =
+ # Module imported but unused
**/__init__.py:F401
+ # Quantum Painter also outputs append data using bytes object arithmetic on multiple lines
+ **/painter_qgf.py:W503
+ **/painter_qff.py:W503
# Let's slowly crank this down
max_complexity=16
@@ -51,7 +55,7 @@ allow_split_before_dict_value=True
# e = 1*2 - 3
# f = 1 + 2 + 3 + 4
#
-arithmetic_precedence_indication=True
+arithmetic_precedence_indication=False
# Number of blank lines surrounding top-level function and class
# definitions.