Files
NXST/tools/format.sh
T
DragonSpirit 1111f691c6
CI / Build NRO (push) Successful in 28s
CI / Format check (push) Successful in 33s
CI / Layering check (push) Successful in 1s
refactoring
Co-authored-by: n.fedorov <mail@nfedorov.dev>
Co-committed-by: n.fedorov <mail@nfedorov.dev>
2026-05-14 23:34:13 +03:00

7 lines
153 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
find src include -name '*.cpp' -o -name '*.hpp' | xargs clang-format -i
echo "Formatted."