1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2024-11-12 01:10:49 +01:00

chore(dev): Scope code formatting to src/main and src/test

Do not format imports which includes headers from other projects
with different code styles.
This commit is contained in:
icex2 2023-03-21 23:36:09 +01:00 committed by icex2
parent 6a140699ec
commit c2104e7758

View File

@ -69,7 +69,7 @@ clean:
code-format:
$(V)echo "Applying clang-format..."
$(V)find src/ -name '*.c' -o -name '*.h' | xargs clang-format -i -style=file
$(V)find src/main src/test -name '*.c' -o -name '*.h' | xargs clang-format -i -style=file
run-tests:
$(V)echo "Running tests..."