You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
No PEP257 errors are being reported despite flake8-pep257 or flake8-docstrings installed (tested with both).
Running flake8 in the command line on an example Python file gives the output:
build.py:1:1: D100 Missing docstring in public module
build.py:8:1: D103 Missing docstring in public function
build.py:21:1: D103 Missing docstring in public function
However these are not displayed by this linter. In the package settings I've tried changing it to recognise E, W, D rather than just E, W, but this has no effect.
The text was updated successfully, but these errors were encountered:
You know, I was wondering why I wasn't seeing any errors related to that...
Turns out this is a bug in the regex that filters out the input (because flake8 can't provide nice json output...). This happens after the output of the program, hence why the setting has no effect. I'll throw up a PR that fixes this shortly.
No PEP257 errors are being reported despite
flake8-pep257
orflake8-docstrings
installed (tested with both).Running
flake8
in the command line on an example Python file gives the output:However these are not displayed by this linter. In the package settings I've tried changing it to recognise
E, W, D
rather than justE, W
, but this has no effect.The text was updated successfully, but these errors were encountered: