mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd "$(pwd)"
|
|
|
|
cd "${ESP_MATTER_PATH}"
|
|
SRC_FILES="$(find components device_hal examples -regextype posix-egrep -regex ".*\.(c|cpp|cxx|h|hpp|hxx)" |\
|
|
grep -v -iE '/gen/|/build/|/zap-generated/')"
|
|
for SRC_FILE in ${SRC_FILES}; do
|
|
echo "formatting ${SRC_FILE}"
|
|
clang-format -i "${SRC_FILE}"
|
|
done
|
|
|
|
popd
|