We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
""" test""" #
run Pylint with the empty-comment extension Add checker for empty comments #3870
for example in command line with a file named temp.py:
temp.py
pylint --load-plugins=pylint.extensions.empty_comment temp.py
You get the following message output: temp.py:1:0: R2044: Line with empty comment (empty-comment)
temp.py:1:0: R2044: Line with empty comment (empty-comment)
with line number 1.
1
You would expect line number 2, i.e with output: temp.py:2:0: R2044: Line with empty comment (empty-comment)
2
temp.py:2:0: R2044: Line with empty comment (empty-comment)
pylint 2.6.1-dev1 astroid 2.5.0 Python 3.7.7 (default, May 6 2020, 11:45:54) [MSC v.1916 64 bit (AMD64)]
running on Windows 10 64-bit
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Steps to reproduce
run Pylint with the empty-comment extension Add checker for empty comments #3870
for example in command line with a file named
temp.py
:pylint --load-plugins=pylint.extensions.empty_comment temp.py
Current behavior
You get the following message output:
temp.py:1:0: R2044: Line with empty comment (empty-comment)
with line number
1
.Expected behavior
You would expect line number
2
, i.e with output:temp.py:2:0: R2044: Line with empty comment (empty-comment)
pylint --version output
pylint 2.6.1-dev1
astroid 2.5.0
Python 3.7.7 (default, May 6 2020, 11:45:54) [MSC v.1916 64 bit (AMD64)]
running on Windows 10 64-bit
The text was updated successfully, but these errors were encountered: