From f9256c613a8dc73f7063f7b53b6bca2810ac9f1b Mon Sep 17 00:00:00 2001 From: nguyenv Date: Tue, 16 Apr 2024 21:44:35 -0500 Subject: [PATCH] Do not include nanoarrow files in clang-format (#2449) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fbcb22d076..01a11b8b64 100644 --- a/Makefile +++ b/Makefile @@ -53,12 +53,12 @@ data: .PHONY: check-format check-format: @./scripts/run-clang-format.sh . clang-format 0 \ - `find libtiledbsoma apis/python/src -name "*.cc" -or -name "*.cpp" -or -name "*.h"` + `find libtiledbsoma apis/python/src -name "*.cc" -or -name "*.cpp" -or -name "*.h" ! -name "nanoarrow.*"` .PHONY: format format: @./scripts/run-clang-format.sh . clang-format 1 \ - `find libtiledbsoma apis/python/src -name "*.cc" -or -name "*.cpp" -or -name "*.h"` + `find libtiledbsoma apis/python/src -name "*.cc" -or -name "*.cpp" -or -name "*.h" ! -name "nanoarrow.*"` # clean # -------------------------------------------------------------------