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.
42 lines
860 B
42 lines
860 B
11 months ago
|
# 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
|
||
|
InsertNewlineAtEOF: true
|
||
|
|
||
|
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
|