From 30c0cc9479b877f904a577b1b5041de2ebc5d7d6 Mon Sep 17 00:00:00 2001 From: James Kasten Date: Sun, 14 Dec 2014 04:09:54 -0800 Subject: [PATCH] Remove requirement for doc of all "priv" func --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index d8096c19a..4627adccf 100644 --- a/.pylintrc +++ b/.pylintrc @@ -171,7 +171,7 @@ method-name-hint=[a-z_][a-z0-9_]{2,30}$ # Regular expression which should only match function or class names that do # not require a docstring. -no-docstring-rgx=(__.*__)|(test_[A-Za-z0-9_]*)|(_call) +no-docstring-rgx=(__.*__)|(test_[A-Za-z0-9_]*)|(_*) # Minimum line length for functions/classes that require docstrings, shorter # ones are exempt.