Skip to content

Commit

Permalink
Merge pull request #139 from xylar/omega/update-dev-dependencies
Browse files Browse the repository at this point in the history
Update pre-commit dependencies
  • Loading branch information
xylar authored Sep 30, 2024
2 parents 229ed89 + 6ec1015 commit 48686a7
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
files: ^components/omega/
repos:
- repo: https://github.com/Takishima/cmake-pre-commit-hooks
rev: v1.9.5
rev: v1.9.6
hooks:
- id: clang-format
# - id: clang-tidy
Expand All @@ -10,7 +10,7 @@ repos:
# - id: include-what-you-use

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -34,17 +34,23 @@ repos:
# 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: 7.0.0
rev: 7.1.1
hooks:
- id: flake8
args: ["--config=components/omega/python_lint.cfg"]
additional_dependencies: [flake8-isort]

# Can run individually with `pre-commit run mypy --all-files`
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0
rev: v1.11.2
hooks:
- id: mypy
args: ["--config=components/omega/python_lint.cfg", "--show-error-codes"]
verbose: true
additional_dependencies: ['types-requests']


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

0 comments on commit 48686a7

Please sign in to comment.