Skip to content
Snippets Groups Projects
format.sh 284 B
Newer Older
  • Learn to ignore specific revisions
  • #!/usr/bin/env sh
    
    
    # Runs the Clang Formatter
    # Return codes:
    #  - 1 there are files to be formatted
    #  - 0 everything looks fine
    
    
    FILES=$(find src -type f -type f \( -iname "*.cpp" -o -iname "*.h" \))
    
    for f in $FILES
    do
    
        clang-format -i "$f"
    
    
    git diff --exit-code