lordmauve / flake8-html

Generate HTML reports of flake8 violations
Other
51 stars 17 forks source link

Adjustments for flake8 3.8.x #16

Closed asottile closed 4 years ago

asottile commented 4 years ago

reported in flake8: https://gitlab.com/pycqa/flake8/-/issues/642

this plugin was missing two plugin attributes (name and version) -- after adding these flake8-html can benefit from the new grouped help:

$ flake8 --help

...

flake8-html:
  --htmldir HTMLDIR     Directory in which to write HTML output.
  --htmltitle HTMLTITLE
                        Title to display in HTML documentation
  --htmlpep8 HTMLPEP8   Whether to print a pep8 report instead of the standard
                        one

...
lordmauve commented 4 years ago

Nice! Thanks.