From 5c867543404fbec01ad3290bed1cdbadf6e4c78b Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 7 Sep 2021 13:25:26 +0200 Subject: [PATCH] [pylint] .pylintrc - disable missing-function-docstring Suggested-by: @dalf https://github.com/searxng/searxng/issues/102#issuecomment-914168470 Signed-off-by: Markus Heiser --- .pylintrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index eb6d500b3..141715258 100644 --- a/.pylintrc +++ b/.pylintrc @@ -59,7 +59,9 @@ confidence= # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use"--disable=all --enable=classes # --disable=W" -disable=bad-whitespace, duplicate-code +disable=bad-whitespace, + duplicate-code, + missing-function-docstring, # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option