From 0dabcd402fea674ac159fe4991697bf4e8347eb8 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 29 Apr 2021 18:04:24 -0300 Subject: [PATCH] Disable pylint's `too-many-locals` and `too-many-branches`. Although both warnings are relevant, the code style choosen for ansible-freeipa currently require them to be disable. --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cddb81dc..cbf283d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,7 +38,9 @@ disable = missing-function-docstring, wrong-import-position, duplicate-code, - broad-except + broad-except, + too-many-branches, + too-many-locals [pylint.BASIC] good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode -- GitLab