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
When you use Windows (CMD) but don't want to use the PowerShell cannon to shoot this fly, try this:
for /r %t in (*.cpp *.h) do clang-format -i -style=WebKit "%t"
Don't forget to duplicate the two %s if in a cmd script.
%