summaryrefslogtreecommitdiff
path: root/.pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-05-09 20:46:58 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-05-09 20:46:58 -0400
commit1f7fcec9352691a6e7a90c20e13dc59b65865030 (patch)
treecb24410520bf6cd1060eb08060bbb11ce75a0316 /.pylintrc
parent30ddcc968a6654f5cdb5ccce6d7f1490ff4995b5 (diff)
downloadpython-coveragepy-git-1f7fcec9352691a6e7a90c20e13dc59b65865030.tar.gz
More docstrings all around.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index e7d76c31..834dcc3c 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -69,7 +69,7 @@ load-plugins=
# Messages that are noisy for now, eventually maybe we'll turn them on:
# C0111:169:coverage.analyze_morf: Missing docstring
# C0103:256:coverage.morf_filename: Invalid name "f" (should match [a-z_][a-z0-9_]{2,30}$)
-disable-msg=I0011,W0122,W0142,W0232,C0323,C0324,W0603, R0201,R0401,W0403,E1103, C0111,C0103
+disable-msg=I0011,W0122,W0142,W0232,C0323,C0324,W0603, R0201,R0401,W0403,E1103, C0103
[REPORTS]
@@ -123,7 +123,7 @@ required-attributes=
# Regular expression which should only match functions or classes name which do
# not require a docstring
-no-docstring-rgx=__.*__
+no-docstring-rgx=__.*__|test[A-Z_].*|setUp|tearDown
# Regular expression which should only match correct module names
module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$