| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix / improve recently merged patches + CI | Anthony Sottile | 2019-07-08 | 3 | -4/+4 |
| | | |||||
| * | support extend-exclude Fixes #535 | Thomas Grainger | 2019-07-08 | 2 | -1/+16 |
| | | |||||
| * | Merge branch 'master' into 'master' | Anthony Sottile | 2019-07-08 | 1 | -3/+2 |
| |\ | | | | | | | | | | | | | Remove filter by filename in utils.filenames_from Closes #382 See merge request pycqa/flake8!311 | ||||
| | * | Remove filter by filename in utils.filenames_from | Yevhen Amelin | 2019-03-19 | 1 | -3/+2 |
| | | | |||||
| * | | Release 3.7.83.7.8 | Anthony Sottile | 2019-07-08 | 1 | -1/+1 |
| | | | |||||
| * | | pyflakes: Change to `normalize_path()` for filename normalization | Eric N. Vander Weele | 2019-07-08 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | It's unnecessary to call the `normalize_paths()` function because it is intended for dealing with multiple paths to normalize. Given that `normalize_paths()` utilizes `normalize_path()`, just call `normalize_path()` directly. | ||||
| * | | fix CI build | Anthony Sottile | 2019-07-08 | 1 | -2/+3 |
| | | | |||||
| * | | This PR addresses issue #549 (noqa does only work as intended with single ↵ | Markus Piotrowski | 2019-06-16 | 1 | -1/+1 |
| | | | | | | | | | | | letter error codes). A single change in the regex `NOQA_INLINE_REGEXP` in `defaults.py` will allow to catch error codes which consist of more than one letter. This will close #549. | ||||
| * | | Merge branch 'show_traceback' into 'master' | Anthony Sottile | 2019-06-14 | 1 | -1/+2 |
| |\ \ | | | | | | | | | | | | | Show traceback on plugin exception See merge request pycqa/flake8!317 | ||||
| | * | | Show traceback on plugin exception | Ivan Pozdeev | 2019-05-20 | 1 | -1/+2 |
| | | | | |||||
| * | | | mypy now passes | Anthony Sottile | 2019-05-19 | 18 | -175/+199 |
| |/ / | |||||
| * | | whitelist a bandit false positive and improve type annotation | Anthony Sottile | 2019-05-19 | 1 | -3/+3 |
| | | | |||||
| * | | Fix crash when file fails to tokenize but parses | Anthony Sottile | 2019-04-07 | 1 | -2/+1 |
| |/ | |||||
| * | Fixes handling of empty lists by Application | Charles Frye | 2019-03-07 | 1 | -1/+1 |
| | | | | | | | | | | | | `Application.parse_preliminary_options_and_args` was previously, against expectations, treating empty lists passed as the `argv` argument the same way it treated `None`s. This has been addressed and the correct behavior tested for in a unit test of the `Application` class. See issue #518 for details. | ||||
| * | Release 3.7.73.7.7 | Anthony Sottile | 2019-02-25 | 1 | -1/+1 |
| | | |||||
| * | Ensure exceptions are pickleable | Anthony Sottile | 2019-02-19 | 2 | -27/+20 |
| | | |||||
| * | Release 3.7.63.7.6 | Anthony Sottile | 2019-02-18 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'mypy_improvements' into 'master' | Ian Stapleton Cordasco | 2019-02-17 | 3 | -7/+8 |
| |\ | | | | | | | | | Improve a few mypy type annotations See merge request pycqa/flake8!307 | ||||
| | * | Improve a few mypy type annotations | Anthony Sottile | 2019-02-17 | 3 | -7/+8 |
| | | | |||||
| * | | Merge branch 'perf_only_one_proc' into 'master' | Ian Stapleton Cordasco | 2019-02-17 | 1 | -9/+1 |
| |\ \ | | | | | | | | | | | | | Speed up flake8 when only 1 filename is passed See merge request pycqa/flake8!305 | ||||
| | * | | Speed up flake8 when only 1 filename is passed | Anthony Sottile | 2019-02-17 | 1 | -9/+1 |
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ~40% improvement over status quo (perf measurements are best-of-5) ### before ```console $ time flake8 /dev/null real 0m0.337s user 0m0.212s sys 0m0.028s ``` ### after ```console $ time flake8 /dev/null real 0m0.197s user 0m0.182s sys 0m0.012s ``` | ||||
| * | | Remove pyflakes monkeypatching | Anthony Sottile | 2019-02-16 | 1 | -11/+1 |
| |/ | |||||
| * | FIX 507: allow multiple letters in codes | Илья Лебедев | 2019-02-11 | 1 | -1/+1 |
| | | |||||
| * | Release 3.7.53.7.5 | Anthony Sottile | 2019-02-04 | 1 | -1/+1 |
| | | |||||
| * | Fix reporting of UndefinedLocal pyflakes error | Anthony Sottile | 2019-01-31 | 1 | -5/+5 |
| | | |||||
| * | Remove noqa comments now that 3.7 has been released | Anthony Sottile | 2019-01-31 | 7 | -10/+9 |
| | | |||||
| * | Release 3.7.43.7.4 | Anthony Sottile | 2019-01-31 | 1 | -1/+1 |
| | | |||||
| * | Fix performance regression with per-file-ignores | Anthony Sottile | 2019-01-31 | 1 | -8/+6 |
| | | | | | | | | | With a large number of errors, filenames, and per-file-ignores the style guide selection would take a significant portion of execution time (python3 70% / python2 99.9%). Caching the styleguide lookup by filename eliminates this bottleneck. | ||||
| * | Release 3.7.33.7.3 | Anthony Sottile | 2019-01-30 | 1 | -1/+1 |
| | | |||||
| * | Improve error message for malformed per-file-ignores | Anthony Sottile | 2019-01-30 | 1 | -2/+19 |
| | | |||||
| * | Gracefully ignore flake8-per-file-ignores if installed | Anthony Sottile | 2019-01-30 | 1 | -0/+6 |
| | | |||||
| * | Merge branch 'fix_statistics' into 'master' | Anthony Sottile | 2019-01-30 | 1 | -4/+8 |
| |\ | | | | | | | | | | | | | Fix flake8 --statistics Closes #499 See merge request pycqa/flake8!295 | ||||
| | * | Fix flake8 --statistics | Anthony Sottile | 2019-01-30 | 1 | -4/+8 |
| | | | |||||
| * | | Make uses of typing compatible with python 3.5.1 / 3.5.0 | Anthony Sottile | 2019-01-30 | 2 | -5/+5 |
| |/ | |||||
| * | Release 3.7.23.7.2 | Anthony Sottile | 2019-01-30 | 1 | -1/+1 |
| | | |||||
| * | Fix legacy api invocation of make_notifier | Anthony Sottile | 2019-01-30 | 1 | -1/+0 |
| | | |||||
| * | Merge branch 'is/490' into 'master' | Anthony Sottile | 2019-01-30 | 1 | -1/+1 |
| |\ | | | | | | | | | | | | | Fix bug flake8 --diff Closes #490 See merge request pycqa/flake8!292 | ||||
| | * | BUG: fix flake8 --diff | Guillaume Lemaitre | 2019-01-30 | 1 | -1/+1 |
| | | | |||||
| * | | Fix plugin exception reporting keyerror typo | Tomer Keren | 2019-01-30 | 1 | -1/+1 |
| |/ | |||||
| * | Release 3.7.13.7.1 | Anthony Sottile | 2019-01-30 | 1 | -1/+1 |
| | | |||||
| * | Allow capitalized filenames in per-file-ignores | Anthony Sottile | 2019-01-29 | 1 | -1/+1 |
| | | |||||
| * | Release v3.7.03.7.0 | Anthony Sottile | 2019-01-29 | 1 | -1/+1 |
| | | |||||
| * | Latest pycodestyle | Anthony Sottile | 2019-01-29 | 2 | -0/+14 |
| | | |||||
| * | Some lint / mypy fixes | Anthony Sottile | 2019-01-24 | 8 | -25/+46 |
| | | |||||
| * | WIP: use latest pyflakes | Anthony Sottile | 2019-01-19 | 1 | -2/+8 |
| | | |||||
| * | Merge branch 'master' into 'master' | Ian Stapleton Cordasco | 2019-01-17 | 1 | -0/+4 |
| |\ | | | | | | | | | | | | | Add support for optparse's 'float' and 'complex' types. Closes #452 See merge request pycqa/flake8!261 | ||||
| | * | Add support for optparse's 'float' and 'complex' types. | ymdatta | 2018-10-28 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | This helps normalize_from_setuptools, to handle all optparse's standard-option-types. Fixes #452 | ||||
| * | | Merge branch 'per_file_ignore' into 'master' | Ian Stapleton Cordasco | 2019-01-17 | 4 | -11/+99 |
| |\ \ | | | | | | | | | | | | | | | | | | | Support more syntaxes in per-file-ignores Closes #471 See merge request pycqa/flake8!281 | ||||
| | * | | Support more syntaxes in per-file-ignores | Anthony Sottile | 2019-01-07 | 4 | -11/+99 |
| | | | | |||||
| * | | | Remove unused PROJECT_FILENAMES | Anthony Sottile | 2019-01-07 | 1 | -2/+0 |
| |/ / | |||||
