Last active
May 22, 2024 11:49
-
-
Save xiaozhuai/88d43ac83151b9a5ad3032f0311ab302 to your computer and use it in GitHub Desktop.
My .clang-format
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
# You can dump builtin base style by following command | |
# clang-format --style=Google --dump-config > .clang-format | |
BasedOnStyle: 'Google' | |
AlignConsecutiveMacros: | |
Enabled: true | |
AcrossEmptyLines: true | |
AcrossComments: true | |
AlignCompound: false | |
PadOperators: false | |
AccessModifierOffset: -4 | |
#AlignAfterOpenBracket: AlwaysBreak | |
AlignArrayOfStructures: Right | |
ColumnLimit: 120 | |
QualifierAlignment: Left | |
FixNamespaceComments: true | |
IndentWidth: 4 | |
JavaScriptQuotes: Single | |
NamespaceIndentation: None | |
ObjCBlockIndentWidth: 4 | |
PointerAlignment: Right | |
DerivePointerAlignment: false | |
SpaceBeforeRangeBasedForLoopColon: true | |
SpacesInContainerLiterals: false | |
InsertNewlineAtEOF: true | |
UseTab: Never | |
LineEnding: LF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment