Skip to content

Commit

Permalink
Update pre-commit hooks & apply small config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tpwo committed Oct 27, 2023
1 parent ec3dae3 commit 700d09e
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
repos:
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.9.0
rev: v3.12.0
hooks:
- id: reorder-python-imports
args: ['--application-directories=.:src']
args: [--py38-plus, '--application-directories=.:src']
- repo: https://github.com/grantjenks/blue
rev: v0.9.1
hooks:
- id: blue
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -21,28 +21,29 @@ repos:
- id: file-contents-sorter
files: \.gitignore
- repo: https://github.com/asottile/pyupgrade
rev: v3.3.2
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.2.0
rev: v1.6.1
hooks:
- id: mypy
additional_dependencies: [types-all]
args: [--non-interactive, --install-types]
additional_dependencies: [pytest]
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
rev: v2.2.6
hooks:
- id: codespell
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.2.0
rev: v2.5.0
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.34.0
rev: v0.37.0
hooks:
- id: markdownlint

0 comments on commit 700d09e

Please sign in to comment.