From d28598149b915dab2196fa5961dcd78c8455c8e1 Mon Sep 17 00:00:00 2001 From: James Molloy Date: Tue, 24 Jul 2018 14:22:09 -0700 Subject: [PATCH] [mlir] add .clang-format Good: template<> void good(); Bad: template<> void bad(); Add .clang-format to enforce goodness. PiperOrigin-RevId: 205890909 --- mlir/.clang-format | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 mlir/.clang-format diff --git a/mlir/.clang-format b/mlir/.clang-format new file mode 100644 index 000000000000..392e20189554 --- /dev/null +++ b/mlir/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM +AlwaysBreakTemplateDeclarations: Yes \ No newline at end of file