6db4831e98
Android 14
31 lines
786 B
YAML
31 lines
786 B
YAML
# Linux kernel style for C
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 8
|
|
UseTab: Always
|
|
BreakBeforeBraces: Linux
|
|
AlwaysBreakBeforeMultilineStrings: true
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortLoopsOnASingleLine: false
|
|
AllowShortFunctionsOnASingleLine: false
|
|
IndentCaseLabels: false
|
|
AlignEscapedNewlinesLeft: false
|
|
AlignTrailingComments: true
|
|
AllowAllParametersOfDeclarationOnNextLine: false
|
|
AlignAfterOpenBracket: true
|
|
SpaceAfterCStyleCast: false
|
|
MaxEmptyLinesToKeep: 2
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakStringLiterals: false
|
|
SortIncludes: false
|
|
ContinuationIndentWidth: 8
|
|
ColumnLimit: 80
|
|
ForEachMacros:
|
|
- foreach
|
|
- Q_FOREACH
|
|
- BOOST_FOREACH
|
|
- list_for_each_entry
|
|
- list_for_each_entry_safe
|
|
- hlist_for_each_entry
|
|
- rb_list_foreach
|
|
- rb_list_foreach_safe
|