projects
/
kconfig-hardened-check.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e714efe
)
Disable pylint too-many-locals, it's not useful for add_kconfig_checks()
author
Alexander Popov
<alex.popov@linux.com>
Tue, 16 Jan 2024 08:30:39 +0000
(11:30 +0300)
committer
Alexander Popov
<alex.popov@linux.com>
Tue, 16 Jan 2024 08:30:39 +0000
(11:30 +0300)
kernel_hardening_checker/checks.py
patch
|
blob
|
history
diff --git
a/kernel_hardening_checker/checks.py
b/kernel_hardening_checker/checks.py
index ece903f7eb5d1f17df93ae94cbb7d362944e90ea..cf43f3347a5156895596b406a4e9f8b5aeeded2b 100644
(file)
--- 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