Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️πŸͺ update pre-commit hooks #129

Merged
merged 4 commits into from
Oct 8, 2023
Merged
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repos:

# Clean jupyter notebooks
- repo: https://github.com/srstevenson/nb-clean
rev: "3.0.0"
rev: "3.0.1"
hooks:
- id: nb-clean

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

# Run code formatting with Black
- repo: https://github.com/psf/black-pre-commit-mirror
rev: "23.7.0" # Keep in sync with blacken-docs
rev: "23.9.1" # Keep in sync with blacken-docs
hooks:
- id: black

Expand All @@ -53,7 +53,7 @@ repos:
hooks:
- id: blacken-docs
additional_dependencies:
- black==23.7.0 # keep in sync with black hook
- black==23.9.1 # keep in sync with black hook

# Check for spelling
- repo: https://github.com/codespell-project/codespell
Expand All @@ -69,13 +69,13 @@ repos:

# Format configuration files with prettier
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.2"
rev: "v3.0.3"
hooks:
- id: prettier
types_or: [yaml, markdown, html, css, javascript, json]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.286
rev: v0.0.292
hooks:
- id: ruff
args: ["--fix"]
Expand Down
Loading