blob: 0e743a1bae2f5eb17c2e25f00e5ef67cea175076 [file] [log] [blame]
---
Language: Cpp
BasedOnStyle: LLVM
# Override some LLVM defaults
AccessModifierOffset: -2
AllowShortFunctionsOnASingleLine: Inline
BreakBeforeBraces: Allman
ColumnLimit: 80
ConstructorInitializerAllOnOneLineOrOnePerLine: false
IndentCaseLabels: true
PointerAlignment: Left
IndentWidth: 2
TabWidth: 2
ReflowComments: false
SpacesBeforeTrailingComments: 1
PenaltyBreakComment: 1300
# Although LLVM doesn't use tabs either I want to be **very** explicit about this
UseTab: Never
...