Skip to content

Commit

Permalink
Do not include nanoarrow files in clang-format (#2449)
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenv authored Apr 17, 2024
1 parent ef38706 commit f9256c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
# -------------------------------------------------------------------
Expand Down

0 comments on commit f9256c6

Please sign in to comment.