summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-09-09 13:30:08 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-09-09 13:30:08 -0400
commit42c0c58c452f6f10b26986cefe9cd00688081546 (patch)
treedbe625f88840cc0fe8ed7f927e37868b509dc705 /pylintrc
parentc6b688ac89dca7e8ab5d03ead7799c33f8a92785 (diff)
downloadpython-coveragepy-git-42c0c58c452f6f10b26986cefe9cd00688081546.tar.gz
Name decorator components to avoid docstring requirement
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylintrc b/pylintrc
index d4ba155c..93afc304 100644
--- a/pylintrc
+++ b/pylintrc
@@ -133,9 +133,9 @@ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / stateme
# Special methods don't: __foo__
# Test methods don't: testXXXX
# TestCase overrides don't: setUp, tearDown
-# Nested decorator implementations: _decorator, _wrapped
+# Nested decorator implementations: _decorator, _wrapper
# Dispatched methods don't: _xxx__Xxxx
-no-docstring-rgx=__.*__|test[A-Z_].*|setUp|tearDown|_decorator|_wrapped|_.*__.*
+no-docstring-rgx=__.*__|test[A-Z_].*|setUp|tearDown|_decorator|_wrapper|_.*__.*
# Regular expression which should only match correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$