Last active
March 6, 2023 16:23
-
-
Save mauro-balades/c8c844acb7361b34b07e42d075aa967b to your computer and use it in GitHub Desktop.
Format your C++ projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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