Last active
August 29, 2015 14:15
-
-
Save gruzovator/d5b03f82ebaa4e173801 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# style lines can be copied to Qt Creator Beautifier plugin | |
clang-format-3.5 -style='{ | |
Language: Cpp, | |
Standard: Cpp11, | |
UseTab: Never, | |
IndentWidth: 4, | |
ColumnLimit: 100, | |
AllowShortIfStatementsOnASingleLine: false, | |
BreakBeforeBraces: Allman, | |
AllowShortLoopsOnASingleLine: false, | |
MaxEmptyLinesToKeep: 2, | |
PointerBindsToType: false, | |
SpaceBeforeParens: true, | |
SpaceBeforeAssignmentOperators: true, | |
AccessModifierOffset: -4, | |
BreakConstructorInitializersBeforeComma: true, | |
AlwaysBreakTemplateDeclarations: true, | |
BinPackParameters: false, | |
ConstructorInitializerAllOnOneLineOrOnePerLine: true | |
}' "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment