1#!/usr/bin/env bash 2 3set -eu 4 5cd $(dirname $0)/../.. 6 7git ls-files '*.h' '*.c' '*.cpp' '*.hh' '*.cc' | \ 8 grep -v wasmtime-platform.h | \ 9 grep -v wasm.h | \ 10 xargs clang-format-18 -i 11 12