From 7e4a7ec125496441b7e01bc028c8aee804b0ab70 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 28 Aug 2023 17:33:14 +0200 Subject: [PATCH] Disable pylint messages for functions and classes --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a4c827c..1769d02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,11 @@ good-names = [ "ip", ] +[tool.pylint."MESSAGES CONTROL"] +disable = [ + "missing-function-docstring", + "missing-class-docstring", +] [tool.poetry] name = "network_inventory"