Skip to content

Commit f7009b1

Browse files
committed
Merge remote-tracking branch 'origin/develop' into fb_graphviz
2 parents cb944fd + 7ecd0d7 commit f7009b1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.claude/commands/review-pr.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Steps:
77
2. Run `gh pr diff $ARGUMENTS` to get the full diff.
88
3. For each file changed, if you need more context than the diff provides, read the relevant file(s).
99

10+
**IMPORTANT — Line Numbers**: Do NOT use line numbers from the diff output file (e.g., from a saved tool result). Those are offsets within the diff text, not actual source line numbers. To cite an accurate line number in a finding, read the actual source file and find the line there. If you cannot confirm a line number, omit it and reference the code by method or function name instead.
11+
1012
Then perform a thorough review in this exact order:
1113

1214
---

.claude/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"hooks": [
77
{
88
"type": "command",
9-
"command": "cd \"$(git rev-parse --show-toplevel)\" && if command -v python3 >/dev/null 2>&1; then python3 .claude/hooks/check-dangerous-commands.py; else python .claude/hooks/check-dangerous-commands.py; fi"
9+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && if command -v python3 >/dev/null 2>&1; then python3 .claude/hooks/check-dangerous-commands.py; else python .claude/hooks/check-dangerous-commands.py; fi"
1010
}
1111
]
1212
},
@@ -15,7 +15,7 @@
1515
"hooks": [
1616
{
1717
"type": "command",
18-
"command": "cd \"$(git rev-parse --show-toplevel)\" && if command -v python3 >/dev/null 2>&1; then python3 .claude/hooks/check-secrets-file.py; else python .claude/hooks/check-secrets-file.py; fi"
18+
"command": "cd \"$CLAUDE_PROJECT_DIR\" && if command -v python3 >/dev/null 2>&1; then python3 .claude/hooks/check-secrets-file.py; else python .claude/hooks/check-secrets-file.py; fi"
1919
}
2020
]
2121
}

0 commit comments

Comments
 (0)