Linter does not recognize same docstring issues as flake8 on command line
See original GitHub issueOn Atom version 1.0.5
The linter always raises “D100 - Missing docstring in public module” even if said docstring is present, but does not raise any other valid docstring warnings.
Example:
vs.
ff/team/__init__.py:5:1: D101 Missing docstring in public class
ff/team/__init__.py:12:1: D102 Missing docstring in public method
ff/team/__init__.py:18:1: D105 Missing docstring in magic method
Issue Analytics
- State:
- Created 8 years ago
- Comments:20 (10 by maintainers)
Top Results From Across the Web
Atom package linter-flake8 not showing output - Stack Overflow
I have installed linter-flake8 with Atom on MacOSX. Atom automatically installed linter. My problem is that the package doesn't detect any ...
Read more >flake8 Documentation - Read the Docs
This allows you to let pyflakes know about builtins that it may not immediately recognize so it does not report warnings for using...
Read more >Full Listing of Options and Their Descriptions - Flake8
This allows you to let pyflakes know about builtins that it may not immediately recognize so it does not report warnings for using...
Read more >Flake8 :: CC 410 Textbook
Let's look at this command and see what it does: python3 -m flake8 - as always, we'll execute Flake8 as a module using...
Read more >Linting Python in Visual Studio Code
The linter has not been installed in the current Python environment. Open a command prompt, navigate to the location where your selecter interpreter...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I installed flake8-pep257, and the warning gone.
pip install flake8-pep257
thanks! after uninstall flake8-docstrings and install flake8-pep257:
I can confirm that the problem seems no longer present.