Skip to content

Commit eba4846

Browse files
author
Nick Sullivan
committed
⬆️ Update ruff to v0.13.0 and add actionlint for CI validation
Keeps linting tools current with latest fixes and features. Actionlint catches GitHub Actions workflow errors before CI runs, preventing broken deployments and saving developer time.
1 parent 851758c commit eba4846

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ repos:
99
- id: check-toml
1010

1111
- repo: https://github.com/astral-sh/ruff-pre-commit
12-
rev: v0.12.10
12+
rev: v0.13.0
1313
hooks:
1414
# Linter
1515
- id: ruff
1616
args: [--fix, --exit-non-zero-on-fix]
1717
# Formatter
1818
- id: ruff-format
19+
20+
- repo: https://github.com/rhysd/actionlint
21+
rev: v1.7.7
22+
hooks:
23+
- id: actionlint
24+
name: Check Github Actions

0 commit comments

Comments
 (0)