From: Štěpán Balážik Date: Thu, 2 Nov 2023 15:29:46 +0000 (+0100) Subject: Silent pylint's line-too-long warning as it's handled better by black X-Git-Tag: v9.20.0~21^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=02d1c5fc8914a3656d7dc124a43dc1273da441c8;p=thirdparty%2Fbind9.git Silent pylint's line-too-long warning as it's handled better by black Black allows the lines with string literals to be longer, which is convenient for descriptive error messages. --- diff --git a/.pylintrc b/.pylintrc index 07d503514d1..b5ea55a5e5d 100644 --- a/.pylintrc +++ b/.pylintrc @@ -5,6 +5,7 @@ disable= C0115, # missing-class-docstring C0116, # missing-function-docstring C0209, # consider-using-f-string + C0301, # line-too-long, handled better by black C0415, # import-outside-toplevel R0801, # duplicate-code R0903, # too-few-public-methods