Is there a way to call something like clang-format --style=Webkit for an entire cpp project folder, rather than running it separately for each file?
clang-format --style=Webkit
I am us
What about:
clang-format -i -style=WebKit *.cpp *.h
in the project folder. The -i option makes it inplace (by default formatted output is written to stdout).