From f5afe719df10ac5c0ca357d35885d7c7df543bde Mon Sep 17 00:00:00 2001 From: Daniel Jasper Date: Tue, 19 Nov 2013 04:26:05 +0000 Subject: [PATCH] Add .clang-format without column limit to subdirectory tests/. A column limit in the test folder can lead to trouble as the RUN, CHECK, etc. comments can potentially be broken over multiple lines changing their meaning. Without column limit, clang-format will simply keep the test author's line breaks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195100 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/.clang-format | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/.clang-format diff --git a/test/.clang-format b/test/.clang-format new file mode 100644 index 00000000000..4799b66f3e9 --- /dev/null +++ b/test/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM +ColumnLimit: 0 -- 2.34.1