aboutsummaryrefslogtreecommitdiffstats
diff options
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>2025-04-08 18:09:21 +0800
committerJonathan Corbet <corbet@lwn.net>2025-04-09 12:10:33 -0600
commit02df8e3b333c3d8550a22ffdfc969caec8462df9 (patch)
treeaf3c0262fc5bd248fbbb4dc3181078daf0587663
parent9cbc2d3b137bfdb7937265c46e9e5d7e72952841 (diff)
downloadipsec-02df8e3b333c3d8550a22ffdfc969caec8462df9.tar.gz
docs: add a .pylintrc file with sys path for docs scripts
The docs scripts that are used by Documentation/sphinx are using scripts/lib/* directories to place classes that will be used by both extensions and scripts. When pylint is used, it needs to identify the path where such scripts are, otherwise it will bail out. Add a simple RC file placing the location of such files. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/7b3c8a932c50ae52ce4c848676602b46d1d4a8f9.1744106242.git.mchehab+huawei@kernel.org
-rw-r--r--.pylintrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
new file mode 100644
index 00000000000000..30b8ae1659f8a4
--- /dev/null
+++ b/.pylintrc
@@ -0,0 +1,2 @@
+[MASTER]
+init-hook='import sys; sys.path += ["scripts/lib/kdoc", "scripts/lib/abi"]'