Skip to content

Commit 145e8cc

Browse files
committed
tools: Add --since option to the git commit spell checker
Apparently there was a badly spelled commit added last year.
1 parent d29849e commit 145e8cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/run_linters.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ def run_codespell_on_commits() -> bool:
8181
"log",
8282
"--max-count=50",
8383
"--no-merges",
84-
r"--format='%H%n%n%s%n%n%b'",
84+
"--since=2025-01-01",
85+
r"--format=%s%n%n%b",
8586
),
8687
cwd=PROJECT_ROOT_PATH,
8788
stdout=PIPE,

0 commit comments

Comments
 (0)