pacman/.clang-format

17 lines
486 B
Plaintext
Raw Normal View History

2020-11-27 16:16:42 +00:00
---
BasedOnStyle: Mozilla
AllowAllConstructorInitializersOnNextLine: false
AllowShortFunctionsOnASingleLine: Inline
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
BreakBeforeBraces: Custom
BreakConstructorInitializers: BeforeColon
BreakInheritanceList: BeforeColon
ColumnLimit: '0'
ConstructorInitializerAllOnOneLineOrOnePerLine: true
PenaltyReturnTypeOnItsOwnLine: '10000'
PointerAlignment: Middle
2021-07-05 12:10:01 +00:00
FixNamespaceComments: true
NamespaceIndentation: None
2020-11-27 16:16:42 +00:00
...