From b37045bd415a4dd48703d34acfab58b4ed7b5af8 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 29 Apr 2021 17:57:29 -0300 Subject: [PATCH] Disable pylint duplicate code verification. Although it is an interesting setup, it currently has too many false positives, disable comments are not working for duplicate-code, and there are some expected duplications in the modules. --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index d415e999..aa6ed6c0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -36,7 +36,8 @@ disable = missing-module-docstring, missing-class-docstring, missing-function-docstring, - wrong-import-position + wrong-import-position, + duplicate-code [pylint.BASIC] good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode -- GitLab