summaryrefslogtreecommitdiff
path: root/src/flake8/plugins/pyflakes.py
Commit message (Collapse)AuthorAgeFilesLines
* audit + string joiningAnthony Sottile2021-03-301-2/+2
|
* audit % format callsAnthony Sottile2021-03-301-4/+4
|
* com2annAnthony Sottile2021-03-301-4/+2
|
* automatic: pyupgrade --py36-plusAnthony Sottile2021-03-301-4/+1
|
* remove vcs integrationAnthony Sottile2021-03-291-7/+0
|
* Help clarify the option behaviourmsmetko2020-06-071-1/+1
|
* Support pyflakes 2.2.xAnthony Sottile2020-04-111-0/+16
|
* move from optparse to argparseAnthony Sottile2019-08-171-2/+0
|
* pyflakes: Change to `normalize_path()` for filename normalizationEric N. Vander Weele2019-07-081-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.
* mypy now passesAnthony Sottile2019-05-191-2/+3
|
* Remove pyflakes monkeypatchingAnthony Sottile2019-02-161-11/+1
|
* Fix reporting of UndefinedLocal pyflakes errorAnthony Sottile2019-01-311-5/+5
|
* WIP: use latest pyflakesAnthony Sottile2019-01-191-2/+8
|
* Call pyflakes api betterAnthony Sottile2018-12-311-1/+1
|
* Use black to reformat Flake8Ian Stapleton Cordasco2018-10-201-66/+88
| | | | | Instead of just using Flake8 and pylint to keep Flake8 clean, let's also use black to make it less manual for clean-up.
* Update to pyflakes 2.0.0Miro Hrončok2018-06-051-0/+2
| | | | | | - Add new pyflakes codes - Bump the required versions - Fixes https://gitlab.com/pycqa/flake8/issues/422
* Clean up some uses of set, list, and dictJon Dufresne2017-05-131-29/+29
| | | | | | * Use set literals instead of set([...]) * Avoid list(sorted(...)) as sorted returns a list * Replace dict() with dict literal
* Assign missing codes to PyFlakes messagesLukasz Langa2016-11-281-17/+34
| | | | | | | | Some PyFlakes messages weren't covered by unique messages, making them impossible to select/ignore. This is now fixed. To ensure we don't regress in the future, a test has been added that fails if there's any uncovered messages.
* Fixed E305: expected 2 blank lines after class or function definitionOndřej Nový2016-11-081-0/+2
|
* Set-up default attributes for FlakesCheckerbug/179Ian Cordasco2016-08-031-0/+3
|
* Merge branch 'origin/proposed/3.0' into master3.0.0b1Ian Cordasco2016-06-251-0/+1
|
* Move flake8 into srcIan Cordasco2016-06-251-0/+140
This is an emerging best practice and there is little reason to not follow it