Clang-format: break after templates
Enforce the following format: template<> void function<TYPE>() Rather than: template<> void function<TYPE>() This is the more common format in KiCad (about 8:1) and agrees with the uncrustify.cfg rules.
This commit is contained in:
parent
d6b8e9e037
commit
3536840f52
|
@ -13,7 +13,7 @@ AllowShortIfStatementsOnASingleLine: false
|
||||||
AllowShortLoopsOnASingleLine: false
|
AllowShortLoopsOnASingleLine: false
|
||||||
AlwaysBreakAfterReturnType: None
|
AlwaysBreakAfterReturnType: None
|
||||||
AlwaysBreakBeforeMultilineStrings: true
|
AlwaysBreakBeforeMultilineStrings: true
|
||||||
AlwaysBreakTemplateDeclarations: false
|
AlwaysBreakTemplateDeclarations: true
|
||||||
BinPackArguments: true
|
BinPackArguments: true
|
||||||
BinPackParameters: true
|
BinPackParameters: true
|
||||||
BreakBeforeBinaryOperators: NonAssignment
|
BreakBeforeBinaryOperators: NonAssignment
|
||||||
|
|
Loading…
Reference in New Issue