├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .pyup.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── autoflake.py ├── flake8_html ├── __init__.py ├── images │ ├── back.svg │ └── file.svg ├── plugin.py └── templates │ ├── annotated-source.html │ ├── file-report.html │ ├── index.html │ └── styles.css ├── requirements_dev.in ├── requirements_dev.txt ├── screenshots ├── annotated-source.png ├── file-report.png └── report-index.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_flake8_html.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/.pyup.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/README.rst -------------------------------------------------------------------------------- /autoflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/autoflake.py -------------------------------------------------------------------------------- /flake8_html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/__init__.py -------------------------------------------------------------------------------- /flake8_html/images/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/images/back.svg -------------------------------------------------------------------------------- /flake8_html/images/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/images/file.svg -------------------------------------------------------------------------------- /flake8_html/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/plugin.py -------------------------------------------------------------------------------- /flake8_html/templates/annotated-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/templates/annotated-source.html -------------------------------------------------------------------------------- /flake8_html/templates/file-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/templates/file-report.html -------------------------------------------------------------------------------- /flake8_html/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/templates/index.html -------------------------------------------------------------------------------- /flake8_html/templates/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/flake8_html/templates/styles.css -------------------------------------------------------------------------------- /requirements_dev.in: -------------------------------------------------------------------------------- 1 | pip-tools 2 | bump2version 3 | wheel 4 | watchdog 5 | tox 6 | coverage 7 | pytest 8 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /screenshots/annotated-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/screenshots/annotated-source.png -------------------------------------------------------------------------------- /screenshots/file-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/screenshots/file-report.png -------------------------------------------------------------------------------- /screenshots/report-index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/screenshots/report-index.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_flake8_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/tests/test_flake8_html.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lordmauve/flake8-html/HEAD/tox.ini --------------------------------------------------------------------------------