summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc14
1 files changed, 13 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 6499644a9..422406417 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -64,7 +64,7 @@ confidence=
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
-# We have two groups of disabled messages:
+# We have three groups of disabled messages:
#
# 1) Messages that are of no use to us
# This is either because we don't follow the convention
@@ -76,6 +76,10 @@ confidence=
# some issues that just grew out of control. Resolving these would
# be nice, but too much work atm.
#
+# 3) Messages related to code formatting
+# Since we use Black to format code automatically, there's no need for
+# pylint to also check for those things.
+#
disable=#####################################
# Messages that are of no use to us #
@@ -111,6 +115,14 @@ disable=#####################################
unused-argument,
+ ##################################################
+ # Formatting-related messages, enforced by Black #
+ ##################################################
+
+ bad-continuation,
+ line-too-long,
+ superfluous-parens,
+
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option