diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-24 14:44:47 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-24 15:16:41 +0200 |
commit | aa6ea8f7dcb42b0b185fa8ffc1472c3a77eacee8 (patch) | |
tree | 98d6b69bd50634357e5bb1cf8882c9d838b49d1a | |
parent | aae1392479432b1709ea48560a6a51fb38f3a9e6 (diff) | |
download | astroid-git-add-flake8-in-pre-commit-configuration.tar.gz |
Upgrade pre-commit configurationadd-flake8-in-pre-commit-configuration
-rw-r--r-- | .pre-commit-config.yaml | 4 | ||||
-rw-r--r-- | requirements_test_pre_commit.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9cce9443..5918228d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,11 +16,11 @@ repos: - id: isort exclude: tests/testdata|astroid/__init__.py - repo: https://github.com/Pierre-Sassoulas/black-disable-checker/ - rev: 1.0.0 + rev: 1.0.1 hooks: - id: black-disable-checker - repo: https://github.com/asottile/pyupgrade - rev: v2.12.0 + rev: v2.13.0 hooks: - id: pyupgrade exclude: tests/testdata diff --git a/requirements_test_pre_commit.txt b/requirements_test_pre_commit.txt index 7b44d175..0033a0aa 100644 --- a/requirements_test_pre_commit.txt +++ b/requirements_test_pre_commit.txt @@ -1,6 +1,6 @@ autoflake==1.4 black==20.8b1 -pyupgrade==2.11.0 -black-disable-checker==1.0.0 +pyupgrade==2.13.0 +black-disable-checker==1.0.1 pylint==2.7.4 isort==5.8.0 |