Last active
August 29, 2015 13:56
-
-
Save satoruhiga/9185325 to your computer and use it in GitHub Desktop.
.clang-format setting
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
BasedOnStyle: Google | |
Standard: Cpp03 | |
# BreakBeforeBraces: Allman | |
PointerBindsToType: true | |
DerivePointerBinding: false | |
# tab | |
UseTab: Always | |
TabWidth: 4 | |
IndentWidth: 4 | |
# constructor | |
ConstructorInitializerIndentWidth: 4 | |
ConstructorInitializerAllOnOneLineOrOnePerLine: false | |
BreakConstructorInitializersBeforeComma: true | |
AccessModifierOffset: -4 | |
MaxEmptyLinesToKeep: 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment