Skip to content

Commit

Permalink
Fix precommit sequence.
Browse files Browse the repository at this point in the history
  • Loading branch information
shyuep committed Mar 10, 2022
1 parent ddfee01 commit 2341f1b
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,9 @@ default_language_version:

ci:
autoupdate_schedule: monthly
skip: [flake8, autoflake, mypy]
skip: [flake8, mypy]

repos:
- repo: https://github.com/psf/black
rev: 22.1.0
hooks:
- id: black

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
Expand All @@ -26,17 +16,6 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace

- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8

- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
hooks:
- id: pyupgrade
args: [--py38-plus]

- repo: https://github.com/myint/autoflake
rev: v1.4
hooks:
Expand All @@ -48,6 +27,27 @@ repos:
- --expand-star-imports
- --ignore-init-module-imports

- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
hooks:
- id: pyupgrade
args: [--py38-plus]

- repo: https://github.com/PyCQA/isort
rev: 5.10.1
hooks:
- id: isort

- repo: https://github.com/psf/black
rev: 22.1.0
hooks:
- id: black

- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.930
hooks:
Expand Down

0 comments on commit 2341f1b

Please sign in to comment.