hookPostEdit shows impact after editing (reads JSON from stdin)
(root string)
| 658 | |
| 659 | // hookPostEdit shows impact after editing (reads JSON from stdin) |
| 660 | func hookPostEdit(root string) error { |
| 661 | filePath, err := extractFilePathFromStdin() |
| 662 | if err != nil || filePath == "" { |
| 663 | return nil |
| 664 | } |
| 665 | |
| 666 | return checkFileImporters(root, filePath) |
| 667 | } |
| 668 | |
| 669 | // hookPromptSubmit analyzes user prompt with code intelligence and shows context |
| 670 | func hookPromptSubmit(root string) error { |
no test coverage detected