You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
835 B
40 lines
835 B
# linux kernel style formatting
|
|
BasedOnStyle: LLVM
|
|
IndentWidth: 8
|
|
UseTab: AlignWithSpaces
|
|
|
|
BreakBeforeBraces: Linux
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
IndentCaseLabels: false
|
|
ColumnLimit: 85
|
|
|
|
InsertBraces: true
|
|
SortIncludes: Never
|
|
BinPackParameters: false
|
|
BinPackArguments: false
|
|
Cpp11BracedListStyle: true
|
|
SpaceBeforeCpp11BracedList: true
|
|
SeparateDefinitionBlocks: Always
|
|
AlignAfterOpenBracket: BlockIndent
|
|
|
|
AlignConsecutiveDeclarations:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: false
|
|
AlignCompound: true
|
|
PadOperators: false
|
|
|
|
AlignConsecutiveMacros:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: true
|
|
|
|
AlignConsecutiveBitFields:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: true
|
|
|
|
AlignConsecutiveAssignments:
|
|
Enabled: true
|
|
AcrossEmptyLines: false
|
|
AcrossComments: true
|
|
|