| Commit message (Collapse) | Author | Age | Files | Lines |
| ... | |
| |/
|
| |
Replaces `flake8-future` with `flake8-quotes`
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| |/
|
|
|
|
|
| |
updates:
- [github.com/psf/black: 21.5b2 → 21.6b0](https://github.com/psf/black/compare/21.5b2...21.6b0)
- [github.com/asottile/pyupgrade: v2.19.1 → v2.19.4](https://github.com/asottile/pyupgrade/compare/v2.19.1...v2.19.4)
- [github.com/pre-commit/mirrors-mypy: v0.812 → v0.902](https://github.com/pre-commit/mirrors-mypy/compare/v0.812...v0.902)
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| | | |
|
| |/
|
|
|
| |
updates:
- [github.com/asottile/pyupgrade: v2.19.0 → v2.19.1](https://github.com/asottile/pyupgrade/compare/v2.19.0...v2.19.1)
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| |/
|
|
|
|
| |
updates:
- [github.com/psf/black: 21.5b1 → 21.5b2](https://github.com/psf/black/compare/21.5b1...21.5b2)
- [github.com/asottile/pyupgrade: v2.18.2 → v2.19.0](https://github.com/asottile/pyupgrade/compare/v2.18.2...v2.19.0)
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| | |
| |
| |
| | |
for more information, see https://pre-commit.ci
|
| |/
|
|
|
| |
updates:
- [github.com/asottile/pyupgrade: v2.16.0 → v2.18.2](https://github.com/asottile/pyupgrade/compare/v2.16.0...v2.18.2)
|
| |\
| |
| | |
Clarify where `--jobs` is disabled
|
| |/ |
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| |/
|
|
|
|
| |
updates:
- [github.com/pre-commit/pre-commit-hooks: v3.4.0 → v4.0.1](https://github.com/pre-commit/pre-commit-hooks/compare/v3.4.0...v4.0.1)
- [github.com/asottile/pyupgrade: v2.15.0 → v2.16.0](https://github.com/asottile/pyupgrade/compare/v2.15.0...v2.16.0)
|
| |\
| |
| | |
[pre-commit.ci] pre-commit autoupdate
|
| |/
|
|
|
|
| |
updates:
- [github.com/psf/black: 21.4b2 → 21.5b1](https://github.com/psf/black/compare/21.4b2...21.5b1)
- [github.com/asottile/pyupgrade: v2.14.0 → v2.15.0](https://github.com/asottile/pyupgrade/compare/v2.14.0...v2.15.0)
|
| |\
| |
| | |
Automatically create output directories
|
| |/ |
|
| |\
| |
| |
| | |
Release 3.9.2
|
| | | |
|
| | |
| |
| | |
correct and deprecate the value of indent_size_str
|
| |\ \
| | |
| | | |
correct and deprecate the value of indent_size_str
|
| |/ / |
|
| |\ \
| | |
| | | |
[pre-commit.ci] pre-commit autoupdate
|
| |/ /
| |
| |
| |
| |
| | |
updates:
- [github.com/psf/black: 21.4b0 → 21.4b2](https://github.com/psf/black/compare/21.4b0...21.4b2)
- [github.com/asottile/pyupgrade: v2.13.0 → v2.14.0](https://github.com/asottile/pyupgrade/compare/v2.13.0...v2.14.0)
|
| |\ \
| | |
| | | |
[pre-commit.ci] pre-commit autoupdate
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
updates:
- [github.com/asottile/reorder_python_imports: v2.4.0 → v2.5.0](https://github.com/asottile/reorder_python_imports/compare/v2.4.0...v2.5.0)
- [github.com/psf/black: 20.8b1 → 21.4b0](https://github.com/psf/black/compare/20.8b1...21.4b0)
- [github.com/asottile/pyupgrade: v2.12.0 → v2.13.0](https://github.com/asottile/pyupgrade/compare/v2.12.0...v2.13.0)
|
| |\ \ \
| |/ /
|/| | |
Use python -mpip to install pip in github actions
|
| |/ /
| |
| | |
This fixes installation on windows
|
| |\ \
| | |
| | | |
short circuit on ast error before tokenization error
|
| |/ / |
|
| |\ \
| | |
| | | |
extend black formatting to tests as well
|
| |/ / |
|
| |\ \
| |/
| |
| | |
Release 3.9.1
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since Flake8 3.0 we've had the ability for plugins to use
`extend_default_ignore` to register codes they want disabled by default.
This, however, was a permanent disabling unfortunately. Our code didn't
have a way of understanding that this new set of `ignore` codes was
actually the 'default' set for that run. Much like the
extended_select_list, we now attach extended_ignore_list to be able to
confidently determine if the ignore we get in the DecisionEngine is
actually the Default Ignore list and what plugins what us to ignore by
default.
Refs https://github.com/PyCQA/pep8-naming/pull/157
|
| |\ \
| | |
| | | |
Fix bug for plugins using extend_default_ignore
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since Flake8 3.0 we've had the ability for plugins to use
`extend_default_ignore` to register codes they want disabled by default.
This, however, was a permanent disabling unfortunately. Our code didn't
have a way of understanding that this new set of `ignore` codes was
actually the 'default' set for that run. Much like the
extended_select_list, we now attach extended_ignore_list to be able to
confidently determine if the ignore we get in the DecisionEngine is
actually the Default Ignore list and what plugins what us to ignore by
default.
Refs https://github.com/PyCQA/pep8-naming/pull/157
|
| |\ \
| | |
| | | |
[pre-commit.ci] pre-commit autoupdate
|
| |/ / |
|
| |\ \
| | |
| | | |
Add --extend-select command line argument
|
| |/ /
| |
| |
| |
| |
| |
| |
| |
| | |
Implement `--extend-select` command line argument following what was
done for `--extend-ignore` in !233. This option can be used to
selectively add individual codes without overriding the default list
entirely.
Addresses the remaining item of issue #1061.
|
| |\ \
| | |
| | | |
improve code coverage in a few places
|
| |/ / |
|
| |\ \
| | |
| | | |
[pre-commit.ci] pre-commit autoupdate
|
| | | | |
|
| |/ / |
|
| |\ \
| | |
| | | |
add issue template
|
| |/ / |
|