Drop 'disable=invalid-name' for pylint
authorAlexander Popov <alex.popov@linux.com>
Tue, 14 May 2024 13:14:56 +0000 (16:14 +0300)
committerAlexander Popov <alex.popov@linux.com>
Tue, 14 May 2024 13:14:56 +0000 (16:14 +0300)
kernel_hardening_checker/__init__.py
kernel_hardening_checker/checks.py
kernel_hardening_checker/engine.py

index 907db5fe2d96b6f06bfce0d079facef505a58700..91742c3923d78973a2d865b05adee609851c4568 100644 (file)
@@ -8,7 +8,7 @@ Author: Alexander Popov <alex.popov@linux.com>
 This module performs input/output.
 """
 
-# pylint: disable=missing-function-docstring,line-too-long,invalid-name,too-many-branches,too-many-statements
+# pylint: disable=missing-function-docstring,line-too-long,too-many-branches,too-many-statements
 
 import gzip
 import sys
index d910698c7e26a965517c8a726074cbc5a871f008..dd7cf39c2542593654a94f61f3363db72d5f8d8d 100644 (file)
@@ -8,7 +8,7 @@ Author: Alexander Popov <alex.popov@linux.com>
 This module contains knowledge for checks.
 """
 
-# pylint: disable=missing-function-docstring,line-too-long,invalid-name
+# pylint: disable=missing-function-docstring,line-too-long
 # pylint: disable=too-many-branches,too-many-statements,too-many-locals
 
 from typing import List
index 569809afee3180d47235877b7d747922713fdf1a..ee56d637b9b763e0dec0e9cfc41d38fcab3827cc 100644 (file)
@@ -9,7 +9,7 @@ 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
+# pylint: disable=line-too-long,too-many-branches
 
 from __future__ import annotations
 import sys