Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
repos:
# Autoformat: Python code, syntax patterns are modernized
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
rev: v3.20.0
hooks:
- id: pyupgrade
args:
Expand All @@ -28,13 +28,13 @@ repos:

# Autoformat: Python code
- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 6.1.0
hooks:
- id: isort

# Autoformat: Python code
- repo: https://github.com/psf/black
rev: 25.1.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.9.0
hooks:
- id: black

Expand All @@ -46,7 +46,7 @@ repos:

# Misc...
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
hooks:
# Autoformat: Makes sure files end in a newline and only a newline.
Expand All @@ -64,13 +64,13 @@ repos:

# Lint: Python code
- repo: https://github.com/PyCQA/flake8
rev: "7.1.2"
rev: "7.3.0"
hooks:
- id: flake8

# Lint: JS code
- repo: https://github.com/pre-commit/mirrors-eslint
rev: "v8.56.0"
rev: "v9.37.0"
hooks:
- id: eslint
files: \.jsx?$
Expand Down
Loading