| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | Only use multiprocessing when the method is fork | Anthony Sottile | 2019-10-28 | 1 | -6/+0 | |
| | | | | | | | | | | | | | | | | | | | | | In python3.8 on macos and in all versions on windows the multiprocessing method is `spawn` which does not preserve class state. | |||||
| * | | | | Only use multiprocessing when the method is fork | Anthony Sottile | 2019-10-28 | 1 | -6/+0 | |
| | | | | | | | | | | | | | | | | | | | | | In python3.8 on macos and in all versions on windows the multiprocessing method is `spawn` which does not preserve class state. | |||||
| * | | | | options: Remove parsing `--verbose` from the configuration file | Eric N. Vander Weele | 2019-10-12 | 1 | -7/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `--verbose` option is only used by `flake8`, itself,` when parsing and handling preliminary options. After parsing and merging options from the configuration file, there is no other behavioral impact to the core of `flake8`. In other words, setting `verbose = ...` in a configuration file doesn't change the logging verbosity. While the `FileProcessor` does expose a `verbose` attribute, obtained from the parsed options, the verbosity of the core of `flake8` should be consistent with how a plugin may respond to the attribute's value. | |||||
| * | | | | Add whitespace fixers | Anthony Sottile | 2019-09-07 | 1 | -1/+0 | |
| | | | | | ||||||
| * | | | | move from optparse to argparse | Anthony Sottile | 2019-08-17 | 2 | -13/+13 | |
| | | | | | ||||||
| * | | | | Document priority of configuration files and command line | peterjc | 2019-08-07 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | Closes issue 560. | |||||
| * | | | | utils: Change `normalize_paths()` contract | Eric N. Vander Weele | 2019-07-28 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `normalize_paths()` utility was doing too much — parsing unstructured configuration path data and dispatching the scrubbed paths to be normalized. Towards moving the parsing of unstructured configuration path data closer towards were configuration occurs, have the utility accept only structured input for normalizing paths. | |||||
| * | | | | utils: Change `parse_comma_separated_list()` contract | Eric N. Vander Weele | 2019-07-28 | 1 | -7/+2 | |
| | | | | | | | | | | | | | | | | | | | | | This is the initial incision point to only accept `str` (or `None`) for parsing out comma/whitespace/regexp separated values. | |||||
| * | | | | Fix incorrect error string in documentation | Markus Gerstel | 2019-07-19 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | In merge request !300 the description of F631 was accidentally used for F633. | |||||
| * | | | | support extend-exclude Fixes #535 | Thomas Grainger | 2019-07-08 | 1 | -0/+32 | |
| |/ / / | ||||||
| * | | | Release 3.7.83.7.8 | Anthony Sottile | 2019-07-08 | 2 | -0/+42 | |
| | | | | ||||||
| * | | | Document global gitignore files for contributors | Mandar Vaze | 2019-05-30 | 1 | -0/+11 | |
| | | | | | | | | | | | | | Fixes #155 | |||||
| * | | | Fix sample entry points in docsasottile-entry-point-docs-fixup | Anthony Sottile | 2019-05-21 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | document max-doc-length option | Antoine Gallix | 2019-03-20 | 1 | -0/+24 | |
| | |/ |/| | ||||||
| * | | Release 3.7.73.7.7 | Anthony Sottile | 2019-02-25 | 2 | -0/+24 | |
| | | | ||||||
| * | | Release 3.7.63.7.6 | Anthony Sottile | 2019-02-18 | 2 | -0/+28 | |
| | | | ||||||
| * | | options.rst: Update --ignore defaults to match code | Kevin Locke | 2019-02-16 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | 3d512ae added W503 and W504 to defaults.IGNORE, but the documentation was never updated. This commit updates the docs to match the code. Signed-off-by: Kevin Locke <kevin@kevinlocke.name> | |||||
| * | | Release 3.7.53.7.5 | Anthony Sottile | 2019-02-04 | 2 | -0/+24 | |
| | | | ||||||
| * | | Release 3.7.43.7.4 | Anthony Sottile | 2019-01-31 | 2 | -0/+24 | |
| | | | ||||||
| * | | Update documentation with new pyflakes error codes. | Greg Back | 2019-01-31 | 1 | -2/+9 | |
| | | | | | | | | | | | | | - F632 and F633 were missing - F721 and F722 were combined in the same row - F723 was missing | |||||
| * | | Release 3.7.33.7.3 | Anthony Sottile | 2019-01-30 | 2 | -0/+44 | |
| | | | ||||||
| * | | Fix typo in 3.7.2.rst | wuck | 2019-01-31 | 1 | -1/+1 | |
| | | | ||||||
| * | | Release 3.7.23.7.2 | Anthony Sottile | 2019-01-30 | 2 | -0/+37 | |
| | | | ||||||
| * | | Release 3.7.13.7.1 | Anthony Sottile | 2019-01-30 | 2 | -0/+23 | |
| | | | ||||||
| * | | Release v3.7.03.7.0 | Anthony Sottile | 2019-01-29 | 2 | -0/+87 | |
| | | | ||||||
| * | | Latest pycodestyle | Anthony Sottile | 2019-01-29 | 1 | -0/+1 | |
| | | | ||||||
| * | | Remove unused and broken flake8.listen plugin type | Anthony Sottile | 2018-12-27 | 2 | -41/+4 | |
| | | | ||||||
| * | | Recommend registering plugin options using `add_options` and `parse_options` ↵ | Alexander Schlarb | 2018-12-16 | 1 | -7/+7 | |
| | | | | | | | | | rather then `register_options` and `provide_options` since these are actually called. | |||||
| * | | Remove workarounds for older, unsupported Pythons | Jon Dufresne | 2018-12-05 | 1 | -2/+0 | |
| | | | ||||||
| * | | Add https://pre-commit.com metadatapre_commit_config | Anthony Sottile | 2018-11-21 | 1 | -0/+49 | |
| | | | ||||||
| * | | Grammar fixes | Ville Skyttä | 2018-11-11 | 4 | -4/+4 | |
| | | | ||||||
| * | | Merge branch 'per-file-style-guide' into 'master' | Ian Stapleton Cordasco | 2018-10-29 | 1 | -0/+40 | |
| |\ \ | | | | | | | | | | | | | | | | | | | Add support for per-file ignores in config Closes #156 See merge request pycqa/flake8!259 | |||||
| | * | | Add versionadded notes for options | Ian Stapleton Cordasco | 2018-10-27 | 1 | -0/+6 | |
| | | | | ||||||
| | * | | Add documentation for --per-file-ignores | Ian Stapleton Cordasco | 2018-10-27 | 1 | -0/+34 | |
| | | | | ||||||
| * | | | Clearer docs, NOQA_INLINE_REGEXP comment - fixes #469 | Jesaja Everling | 2018-10-28 | 1 | -2/+3 | |
| | | | | ||||||
| * | | | Add documentation for `flake8 --extend-ignore` | Lars Butler | 2018-10-26 | 1 | -6/+29 | |
| |/ / | | | | | | | | | Also highlight the behavioral differences between `flake --ignore` and `flake --extend-ignore`. | |||||
| * | | Fixups after 3.6.0 release | Anthony Sottile | 2018-10-23 | 1 | -2/+2 | |
| | | | ||||||
| * | | Release v3.6.03.6.0 | Anthony Sottile | 2018-10-23 | 3 | -2/+120 | |
| | | | ||||||
| * | | Fix docs for --isolated flag | Sargun Vohra | 2018-09-09 | 2 | -2/+2 | |
| | | | ||||||
| * | | Merge branch 'pyflakes_new_codes' into 'master' | Ian Stapleton Cordasco | 2018-06-29 | 1 | -0/+6 | |
| |\ \ | | | | | | | | | | | | | | | | | | | Update to pyflakes 2.0.0 Closes #422 See merge request pycqa/flake8!239 | |||||
| | * | | Update to pyflakes 2.0.0 | Miro Hrončok | 2018-06-05 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | - Add new pyflakes codes - Bump the required versions - Fixes https://gitlab.com/pycqa/flake8/issues/422 | |||||
| * | | | Merge branch 'fix-typos' into 'master' | Ian Stapleton Cordasco | 2018-06-29 | 1 | -1/+1 | |
| |\ \ \ | | | | | | | | | | | | | | | | | docs: Fix two typos See merge request pycqa/flake8!236 | |||||
| | * | | | Fix two typos | GiantsLoveDeathMetal | 2018-05-21 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | | styl -> style commnts -> comments | |||||
| * | | | | Merge branch 'docs-py3' into 'master' | Ian Stapleton Cordasco | 2018-06-29 | 1 | -1/+1 | |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | Update documentation links to latest Python 3 documentation See merge request pycqa/flake8!242 | |||||
| | * | | | | Update documentation links to latest Python 3 documentation | Jon Dufresne | 2018-06-10 | 1 | -1/+1 | |
| | | |/ / | |/| | | | | | | | | | | The URL https://docs.python.org/3/ is actively maintained and updated. | |||||
| * | | | | Fix "styl" -> "style" typo in writing code docs | Valentin Ignatev | 2018-06-16 | 1 | -1/+1 | |
| |/ / / | ||||||
| * | | | docs: Link fixes and redirect avoidance | Ville Skyttä | 2018-05-21 | 3 | -5/+5 | |
| |/ / | ||||||
| * | | Merge branch 'spelling' into 'master' | Ian Stapleton Cordasco | 2018-05-20 | 2 | -2/+2 | |
| |\ \ | | | | | | | | | | | | | Spelling and grammar fixes See merge request pycqa/flake8!232 | |||||
| | * | | Spelling and grammar fixes | Ville Skyttä | 2018-05-13 | 2 | -2/+2 | |
| | |/ | ||||||
| * | | Implement --extend-ignore | Ville Skyttä | 2018-05-16 | 2 | -0/+37 | |
| |/ | | | | Refs #365 | |||||
