From 7ad45a2772d3659e3e6ed4022544624ef69e5cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Mon, 23 Aug 2021 19:58:39 +0200 Subject: [PATCH] pylintrc: Ignore duplicate-code warnings - We get a lot of them in test/format/. They were not being reported before because pylint was getting only one file at a time. --- scripts/pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/pylintrc b/scripts/pylintrc index bf1f3c0c4..ed63c9256 100644 --- a/scripts/pylintrc +++ b/scripts/pylintrc @@ -21,6 +21,7 @@ disable= bad-indentation, bad-whitespace, consider-using-sys-exit, + duplicate-code, invalid-name, missing-docstring, mixed-indentation,