mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-13 17:06:26 -04:00
7 lines
210 B
Bash
Executable file
7 lines
210 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
find \
|
|
src include \
|
|
-name '*.c' -or -name '*.cc' -or -name '*.h' | \
|
|
xargs clang-format -i -style=file
|