diff options
author | pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> | 2023-02-07 11:12:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 11:12:06 +0100 |
commit | 4cbabc9baeded60d9c626c822583215cf3af69d2 (patch) | |
tree | 2bfa9d5e274061e17853f7926a14bee72b091731 /.pre-commit-config.yaml | |
parent | 5bc4cd9a4b4c240227a41786823a6f226864dc4b (diff) | |
download | pylint-git-4cbabc9baeded60d9c626c822583215cf3af69d2.tar.gz |
[pre-commit.ci] pre-commit autoupdate (#8208)
updates:
- [github.com/PyCQA/autoflake: v2.0.0 → v2.0.1](https://github.com/PyCQA/autoflake/compare/v2.0.0...v2.0.1)
- [github.com/charliermarsh/ruff-pre-commit: v0.0.241 → v0.0.243](https://github.com/charliermarsh/ruff-pre-commit/compare/v0.0.241...v0.0.243)
- [github.com/psf/black: 22.12.0 → 23.1.0](https://github.com/psf/black/compare/22.12.0...23.1.0)
* Remove false positive fixed in ruff 0.243
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d6ca18b40..63dd7cfb8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: doc/data/messages/m/missing-final-newline/bad.py| )$ - repo: https://github.com/PyCQA/autoflake - rev: v2.0.0 + rev: v2.0.1 hooks: - id: autoflake exclude: &fixtures tests(/\w*)*/functional/|tests/input|doc/data/messages|tests(/\w*)*data/ @@ -27,7 +27,7 @@ repos: - --remove-duplicate-keys - --remove-unused-variables - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.0.241" + rev: "v0.0.243" hooks: - id: ruff args: ["--fix"] @@ -51,7 +51,7 @@ repos: - id: isort exclude: doc/data/messages/(r/reimported|w/wrong-import-order|u/ungrouped-imports|m/misplaced-future|m/multiple-imports)/bad.py - repo: https://github.com/psf/black - rev: 22.12.0 + rev: 23.1.0 hooks: - id: black args: [--safe, --quiet] |