clang-format: always break template declarations

To better match the defined openbmc style defined here:
https://github.com/openbmc/docs/blob/master/cpp-style-and-conventions.md#types
template <typename T>
class foo
{
    using type = std::decay_t<T>;
};

Change-Id: I87640f5cea5935bbee2546526ebad9ccfcf34726
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/cpp-style-and-conventions.md b/cpp-style-and-conventions.md
index 257d9b2..be365ec 100644
--- a/cpp-style-and-conventions.md
+++ b/cpp-style-and-conventions.md
@@ -184,7 +184,7 @@
 AlwaysBreakAfterDefinitionReturnType: None
 AlwaysBreakAfterReturnType: None
 AlwaysBreakBeforeMultilineStrings: false
-AlwaysBreakTemplateDeclarations: false
+AlwaysBreakTemplateDeclarations: true
 BinPackArguments: true
 BinPackParameters: true
 BraceWrapping: