summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 5d343282..e7d76c31 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -63,12 +63,13 @@ load-plugins=
# W0603: 28:call_singleton_method: Using the global statement
# Messages that may be silly:
# R0201: 42:Tracer.stop: Method could be a function
+# R0401: 1: Cyclic import (coverage -> coverage.control -> coverage.html)
# W0403: 4: Relative import 'coveragetest'
# E1103: 26:RunTests.test_run_python_file: Instance of 'file' has no 'getvalue' member (but some types could not be inferred)
# 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,W0403,E1103, C0111,C0103
+disable-msg=I0011,W0122,W0142,W0232,C0323,C0324,W0603, R0201,R0401,W0403,E1103, C0111,C0103
[REPORTS]