reviewdog / errorformat

Vim's quickfix errorformat implementation in Go
https://reviewdog.github.io/errorformat-playground/
MIT License
108 stars 43 forks source link

[Bug fix] change pydocstyle's error format #127

Closed arahatashun closed 1 year ago

arahatashun commented 1 year ago

Pydocstyle might output the following error logs:

test.py:1 at module level:
        D100: Missing docstring in public module

However, the current error format of pydocstyle assumes in comes after a line number.

This PR fixes this bug by removing in in error format.

mgrachev commented 1 year ago

@arahatashun Thank you!