summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
commitb26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (patch)
treef037dbb904169d1fa53d0c51961b0ee08b389e8a /pylintrc
parentf4b9914ab81eca5762b66446afa3fd57f84d5ec5 (diff)
downloadpython-coveragepy-git-b26cf4981ebc3bdbcec03386b4ee2734f5e9a444.tar.gz
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc10
1 files changed, 7 insertions, 3 deletions
diff --git a/pylintrc b/pylintrc
index c247fb78..037ecc1a 100644
--- a/pylintrc
+++ b/pylintrc
@@ -20,10 +20,10 @@ profile=no
# Add <file or directory> to the black list. It should be a base name, not a
# path. You may set this option multiple times.
-ignore=CVS
+ignore=
# Pickle collected data for later comparisons.
-persistent=yes
+persistent=no
# Set the cache size for astng objects.
cache-size=500
@@ -50,7 +50,9 @@ load-plugins=
#disable-msg-cat=
# Enable the message(s) with the given id(s).
-#enable-msg=
+enable=
+# I0021: Useless suppression
+ I0021
# Disable the message(s) with the given id(s).
disable=
@@ -75,6 +77,8 @@ disable=
# W0212: 86:Reporter.report_files: Access to a protected member _analyze of a client class
C0103,W0212
+msg-template={path}, {line}: {msg} ({symbol}, {msg_id})
+
[REPORTS]
# set the output format. Available formats are text, parseable, colorized, msvs