Skip to content

Commit ab7e1f4

Browse files
authored
Merge pull request #1922 from codeflash-ai/feat/compare-command
feat: add `codeflash compare` CLI command
2 parents 73eeb86 + 7c38d17 commit ab7e1f4

7 files changed

Lines changed: 1113 additions & 376 deletions

File tree

.claude/hooks/post-edit-lint.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ if [[ -z "$file_path" || ! -f "$file_path" ]]; then
1010
fi
1111

1212
if [[ "$file_path" == *.py ]]; then
13-
uv run prek --files "$file_path" 2>/dev/null || true
13+
# First run auto-fixes formatting; second run catches real lint errors
14+
uv run prek --files "$file_path" 2>/dev/null || uv run prek --files "$file_path"
1415
fi

0 commit comments

Comments
 (0)