mirror of
https://github.com/samsonjs/lake.git
synced 2026-03-25 08:55:49 +00:00
7 lines
117 B
Bash
Executable file
7 lines
117 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
set -euo pipefail
|
|
|
|
for file in src/**/*.[ch] test/**/*.[ch]; do
|
|
clang-format -i "$file"
|
|
done
|