Skip to content

Commit

Permalink
feat: add ignore additional clang-format ignore paths
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Larson <[email protected]>
  • Loading branch information
LucasLarson committed Apr 26, 2024
1 parent e262b3f commit ec54426
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions custom/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,19 @@ clang_format() {

command find -- . \
-path '*/.git' -prune -o \
-path '*/.rbenv' -prune -o \
-path '*/.venv' -prune -o \
-path '*/.well-known' -prune -o \
-path '*/__pycache__' -prune -o \
-path '*/Library' -prune -o \
-path '*/node_modules' -prune -o \
-path '*/t' -prune -o \
-path '*/Test' -prune -o \
-path '*/test' -prune -o \
-path '*vscode' -prune -o \
-path '*/Test*' -prune -o \
-path '*/test*' -prune -o \
-path '*/tst*' -prune -o \
-path '*copilot*' -prune -o \
-path '*dummy*' -prune -o \
-path '*vscode*' -prune -o \
'(' \
-name '*.adb' -o \
-name '*.ads' -o \
Expand Down

0 comments on commit ec54426

Please sign in to comment.