From: Alexander Popov Date: Tue, 16 Jan 2024 08:30:39 +0000 (+0300) Subject: Disable pylint too-many-locals, it's not useful for add_kconfig_checks() X-Git-Tag: v0.6.6~11 X-Git-Url: https://jxself.org/git/?p=kconfig-hardened-check.git;a=commitdiff_plain;h=e0b9932fb09f1396ef412d6d36ec34835c07450b Disable pylint too-many-locals, it's not useful for add_kconfig_checks() --- diff --git a/kernel_hardening_checker/checks.py b/kernel_hardening_checker/checks.py index ece903f..cf43f33 100644 --- a/kernel_hardening_checker/checks.py +++ b/kernel_hardening_checker/checks.py @@ -9,7 +9,7 @@ This module contains knowledge for checks. """ # pylint: disable=missing-function-docstring,line-too-long,invalid-name -# pylint: disable=too-many-branches,too-many-statements +# pylint: disable=too-many-branches,too-many-statements,too-many-locals from .engine import KconfigCheck, CmdlineCheck, SysctlCheck, VersionCheck, OR, AND