Skip to content

Commit

Permalink
Update pre-commit config and hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Mar 1, 2024
1 parent 6f8cdba commit 303aaa9
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ repos:
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
rev: v9.11.0
rev: v9.12.0
hooks:
- id: commitlint
stages:
Expand All @@ -44,7 +44,7 @@ repos:
- id: codespell
args: [--ignore-words=.codespellignore]
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.27.3
rev: 0.28.0
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand All @@ -66,6 +66,7 @@ repos:
- id: fmt
args: [--all, --]
- id: clippy
name: clippy --all-features
args:
[
--locked,
Expand All @@ -76,6 +77,18 @@ repos:
-D,
warnings,
]
- id: clippy
name: clippy --no-default-features
args:
[
--locked,
--workspace,
--no-default-features,
--all-targets,
--,
-D,
warnings,
]
- repo: local
hooks:
- id: cargo-doc
Expand Down

0 comments on commit 303aaa9

Please sign in to comment.