summaryrefslogtreecommitdiff
path: root/src/flake8/main/debug.py
Commit message (Collapse)AuthorAgeFilesLines
* com2annAnthony Sottile2021-03-301-1/+1
|
* automatic: pyupgrade --py36-plusAnthony Sottile2021-03-301-4/+3
|
* Switch from entrypoints to importlib_metadataAnthony Sottile2019-11-281-4/+3
|
* move from optparse to argparseAnthony Sottile2019-08-171-25/+22
|
* Replace setuptools with entrypointsAnthony Sottile2018-11-051-4/+3
|
* Use black to reformat Flake8Ian Stapleton Cordasco2018-10-201-13/+14
| | | | | Instead of just using Flake8 and pylint to keep Flake8 clean, let's also use black to make it less manual for clean-up.
* Defer setuptools import to save ~60ms on startupAnthony Sottile2018-10-141-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | (I ran this 5 times and picked a median result) ### before ```console $ time flake8 --help > /dev/null real 0m0.221s user 0m0.199s sys 0m0.020s ``` ### after ```console $ time flake8 --help > /dev/null real 0m0.169s user 0m0.144s sys 0m0.020s ```
* Update our plugin registration for debuggingIan Stapleton Cordasco2017-08-081-2/+8
| | | | | This allows us to report whether or not a plugin is local when users provide `flake8 --bug-report` output.
* Add --bug-report flag to help bug reportersIan Cordasco2016-08-071-0/+62
When invoked it will print out JSON that has all of the debugging information needed by the maintainers to diagnose or reproduce a bug. Closes #207