Compare with None explicitly
[kconfig-hardened-check.git] / kconfig_hardened_check / engine.py
index b458d29ac35870196d6e2ead615d98fe2f473a08..621fdc707c2838d475f1701d7d54bf89db4aeea4 100644 (file)
@@ -1,7 +1,17 @@
 #!/usr/bin/python3
 
-# pylint: disable=missing-module-docstring,missing-class-docstring,missing-function-docstring
-# pylint: disable=line-too-long,invalid-name,too-many-branches,too-many-statements
+"""
+This tool helps me to check Linux kernel options against
+my security hardening preferences for X86_64, ARM64, X86_32, and ARM.
+Let the computers do their job!
+
+Author: Alexander Popov <alex.popov@linux.com>
+
+This module is the engine of checks.
+"""
+
+# pylint: disable=missing-class-docstring,missing-function-docstring
+# pylint: disable=line-too-long,invalid-name,too-many-branches
 
 
 class OptCheck: