[mlir] add .clang-format

Good:
  template<>
  void good();

Bad:
  template<> void bad();

Add .clang-format to enforce goodness.

PiperOrigin-RevId: 205890909
This commit is contained in:
James Molloy 2018-07-24 14:22:09 -07:00 committed by jpienaar
parent 6cab858405
commit d28598149b

2
mlir/.clang-format Normal file
View file

@ -0,0 +1,2 @@
BasedOnStyle: LLVM
AlwaysBreakTemplateDeclarations: Yes