summaryrefslogtreecommitdiff
path: root/doc/whatsnew/2.0.rst
diff options
context:
space:
mode:
authorhippo91 <guillaume.peillex@gmail.com>2018-06-03 06:57:24 +0200
committerAshley Whetter <AWhetter@users.noreply.github.com>2018-06-02 21:57:24 -0700
commita7da6e534805e14094e302e5b0b19b7d16972a15 (patch)
tree05239e7e51b2798666df6e1b261100b93c728d94 /doc/whatsnew/2.0.rst
parentdb63b4928c4210e24b11c87624376fc55b01e09c (diff)
downloadpylint-git-a7da6e534805e14094e302e5b0b19b7d16972a15.tar.gz
Fixed incorrect line number for line-too-long on comment at end of module (#2164)
* Add of get_effective_max_line_number in FileState class + calling it in is_message_enabled * Add of unittest that should not raise any line-too-long message even for a commended line at the end of module * Add of ChangeLog and whatsnew entries
Diffstat (limited to 'doc/whatsnew/2.0.rst')
-rw-r--r--doc/whatsnew/2.0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/whatsnew/2.0.rst b/doc/whatsnew/2.0.rst
index 792ae2848..bc7af65bd 100644
--- a/doc/whatsnew/2.0.rst
+++ b/doc/whatsnew/2.0.rst
@@ -240,3 +240,5 @@ Other Changes
from typing import Any, List
a = 1 # type: List[Any]
+
+* Fix false positive ``line-too-long`` for commented lines at the end of module