diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-07 13:25:26 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-09-07 13:25:26 +0200 |
commit | 5c867543404fbec01ad3290bed1cdbadf6e4c78b (patch) | |
tree | 883812fd45047437217ddc4b58afffe4fbdbce28 /.pylintrc | |
parent | 9ef7f38e4f20bad5a76867aa3e5049a92bc58e59 (diff) | |
download | searxng-5c867543404fbec01ad3290bed1cdbadf6e4c78b.tar.gz searxng-5c867543404fbec01ad3290bed1cdbadf6e4c78b.zip |
[pylint] .pylintrc - disable missing-function-docstring
Suggested-by: @dalf https://github.com/searxng/searxng/issues/102#issuecomment-914168470
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |