This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Check for "TODO" in staged files | |
TODO_FOUND=$(git diff --cached --name-only --diff-filter=AM | grep -E '\.(cpp|c|cc|h|hpp)$' | xargs -r grep -l 'TODO') | |
if [ ! -z "$TODO_FOUND" ]; then | |
echo "Warning: TODO found in the following files:" | |
echo "$TODO_FOUND" | |
echo "Consider addressing the TODOs or creating tickets for them before committing." | |
# Uncomment the next line to block the commit until TODOs are addressed |