Skip to content

Instantly share code, notes, and snippets.

@gruzovator
Last active August 29, 2015 14:15
Show Gist options
  • Save gruzovator/d5b03f82ebaa4e173801 to your computer and use it in GitHub Desktop.
Save gruzovator/d5b03f82ebaa4e173801 to your computer and use it in GitHub Desktop.
clang-format
#!/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