diff --git a/edx_lint/files/pylintrc b/edx_lint/files/pylintrc index 842dd9b0..27b91358 100644 --- a/edx_lint/files/pylintrc +++ b/edx_lint/files/pylintrc @@ -363,6 +363,9 @@ disable= unpacking-in-except, xrange-builtin, + # We want to allow developers to use f-strings for readability + logging-fstring-interpolation, + [REPORTS] # Set the output format. Available formats are text, parseable, colorized, msvs diff --git a/pylintrc b/pylintrc index 6a3c162a..de9bc655 100644 --- a/pylintrc +++ b/pylintrc @@ -67,7 +67,7 @@ # SERIOUSLY. # # ------------------------------ -# Generated by edx-lint version: 1.6 +# Generated by edx-lint version: 4.0.0 # ------------------------------ [MASTER] ignore = ,input @@ -383,6 +383,8 @@ disable = unicode-builtin, unpacking-in-except, xrange-builtin, + + logging-fstring-interpolation, [REPORTS] output-format = text @@ -482,4 +484,4 @@ int-import-graph = [EXCEPTIONS] overgeneral-exceptions = Exception -# f36db2115c8cee926997a3ef62158d69f3ad2411 +# 9d586a50bdaf78addf899c9e92b44cdcce3e9d84