Files
UnrealEngine/Engine/Source/ThirdParty/CLI11/git-main/scripts/check_style.sh
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 lines
175 B
Bash

#!/usr/bin/env sh
set -evx
clang-format --version
git ls-files -- '*.cpp' '*.hpp' | xargs clang-format -sort-includes -i -style=file
git diff --exit-code --color
set +evx