Created
February 14, 2022 14:50
-
-
Save dewcked/81d7e7acb6113252a1470337cb7f085a to your computer and use it in GitHub Desktop.
Windows visual studio style clang-format executable command
This file contains 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
clang-format --style="{BasedOnStyle: llvm,Standard: Latest,AccessModifierOffset: -2,AlignAfterOpenBracket: Align,ColumnLimit: 0,IndentWidth: 2,NamespaceIndentation: All,BreakBeforeBraces: Allman,UseTab: Never,TabWidth: 2,PointerAlignment: Right}" "src.cpp" > "temp_src.cpp" & move /Y "temp_src.cpp" "src.cpp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment