radare2/doc/clang-format

32 lines
774 B
Plaintext
Raw Normal View History

2014-12-16 23:18:44 +00:00
Language: Cpp
MaxEmptyLinesToKeep: 1
SpaceBeforeParens: Always
SpaceInEmptyParentheses: false
2015-12-08 23:41:44 +00:00
SpacesInContainerLiterals: true
2014-12-16 23:18:44 +00:00
BasedOnStyle: LLVM
ContinuationIndentWidth: 8
IndentCaseLabels: false
IndentFunctionDeclarationAfterType: false
IndentWidth: 8
UseTab: Always
IndentCaseLabels: false
2015-08-04 22:03:54 +00:00
ColumnLimit: 0
2014-12-16 23:18:44 +00:00
BreakBeforeBraces: Attach
BraceWrapping: {
AfterClass: 'true'
2017-07-04 20:59:58 +00:00
AfterControlStatement: 'true'
AfterEnum : 'true'
AfterFunction : 'true'
AfterNamespace : 'true'
AfterStruct : 'true'
AfterUnion : 'true'
BeforeCatch : 'true'
BeforeElse : 'true'
IndentBraces : 'true'
}
2014-12-16 23:18:44 +00:00
BreakBeforeTernaryOperators: false
2015-08-04 22:03:54 +00:00
AllowShortIfStatementsOnASingleLine: true
2014-12-16 23:18:44 +00:00
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Inline
2015-08-04 22:03:54 +00:00
AllowShortLoopsOnASingleLine: true