From efce0bdc057246fa3929b344f6a1db4a66d1e2a1 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 29 Apr 2021 17:45:20 -0300 Subject: [PATCH] Disable pylint warnings for missing docstrings. --- setup.cfg | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.cfg b/setup.cfg index d06c1495..061bc6be 100644 --- a/setup.cfg +++ b/setup.cfg @@ -31,6 +31,12 @@ per-file-ignores = [pydocstyle] inherit = false ignore = D1,D212,D203 +[pylint.MASTER] +disable = + missing-module-docstring, + missing-class-docstring, + missing-function-docstring, + [pylint.BASIC] good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode -- GitLab