Skip to content

Instantly share code, notes, and snippets.

@mauro-balades
Last active March 6, 2023 16:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauro-balades/c8c844acb7361b34b07e42d075aa967b to your computer and use it in GitHub Desktop.
Save mauro-balades/c8c844acb7361b34b07e42d075aa967b to your computer and use it in GitHub Desktop.
Format your C++ projects
# note (1): remember to change the ".cpp" to the extension (and the path) you want formatted
# note (2): this works with header files too
find src/**/*.cpp | xargs clang-format -i -style="{IndentWidth: 4,TabWidth: 4}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment