Disable pylint too-many-locals, it's not useful for add_kconfig_checks()
authorAlexander Popov <alex.popov@linux.com>
Tue, 16 Jan 2024 08:30:39 +0000 (11:30 +0300)
committerAlexander Popov <alex.popov@linux.com>
Tue, 16 Jan 2024 08:30:39 +0000 (11:30 +0300)
kernel_hardening_checker/checks.py

index ece903f7eb5d1f17df93ae94cbb7d362944e90ea..cf43f3347a5156895596b406a4e9f8b5aeeded2b 100644 (file)
@@ -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