Skip to content

Commit

Permalink
Merge pull request #73 from altheaden/update-pre-commit-deps
Browse files Browse the repository at this point in the history
Update pre-commit dependencies
  • Loading branch information
xylar authored Oct 2, 2024
2 parents a7b5e60 + c07cb05 commit 2af0558
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,29 @@ fail_fast: true

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml

# Can run individually with `pre-commit run isort --all-files`
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort

# Can run individually with `pre-commit run flake8 --all-files`
# Need to use flake8 GitHub mirror due to CentOS git issue with GitLab
# https://github.com/pre-commit/pre-commit/issues/1206
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.1.1
hooks:
- id: flake8
args: ["--config=setup.cfg"]
additional_dependencies: [flake8-isort]

# https://pre-commit.ci/#configuration
ci:
autofix_prs: false
autoupdate_schedule: monthly

0 comments on commit 2af0558

Please sign in to comment.