summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-07 15:28:59 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-07-07 15:28:59 +0300
commita19a90ff317d93df70fe60fec9ade1ede5117dd8 (patch)
treeb808dc2882e4f06c0b7c1433fabe15b90c89dfd9 /ChangeLog
parenta51ab770fa3a64b057285a4140758f9d07c95014 (diff)
downloadpylint-a19a90ff317d93df70fe60fec9ade1ede5117dd8.tar.gz
ignored-classes option can work with qualified names, as well as with Unix patterns.
Closes issues #244 and #297.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index bd23848..fdd89e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -213,6 +213,10 @@ ChangeLog for Pylint
* Add a new error, 'nonlocal-and-global', which is emitted when a
name is found to be both nonlocal and global in the same scope.
Closes issue #581.
+
+ * ignored-classes option can work with qualified names (ignored-classes=optparse.Values)
+ as well as with Unix pattern matching for ignoring recursively:
+ ignored-classes=optparse.*. Closes issues #244 and #297.