| 123456789101112131415161718192021222324252627282930 |
- # 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
|