We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2adf5fe commit fd9f84eCopy full SHA for fd9f84e
1 file changed
scripts/check_c_formatting.sh
@@ -28,5 +28,8 @@ SRC_DIR="$ROOT_DIR/src"
28
29
echo "Checking formatting in $SRC_DIR/.."
30
31
-find src -type f '(' -name '*.c' -o -name '*.h' ')' ! -name 'utlist.h' -print0 | \
+find src -type f '(' -name '*.c' -o -name '*.h' ')' \
32
+ ! -name 'utlist.h' \
33
+ ! -path 'src/samples/supervisor/posix/zcbor/*' \
34
+ -print0 | \
35
xargs -0 -n1 clang-format ${ARGUMENT} -Werror
0 commit comments