From 648f0230a1a79d90a225e413303be27b271207e2 Mon Sep 17 00:00:00 2001 From: Alexey Bader Date: Sun, 1 Mar 2020 14:35:40 +0300 Subject: [PATCH] [SYCL] Add clang-format configuration file for LIT tests By default LLVM style limit code lines size to 80 characters. It should not be applied to LIT tests as clang-format can't preserve LIT commands semantic written in the code comments. This configuration file was shamelessly copied from the clang project. Signed-off-by: Alexey Bader --- sycl/test/.clang-format | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sycl/test/.clang-format diff --git a/sycl/test/.clang-format b/sycl/test/.clang-format new file mode 100644 index 0000000000000..4799b66f3e9a6 --- /dev/null +++ b/sycl/test/.clang-format @@ -0,0 +1,2 @@ +BasedOnStyle: LLVM +ColumnLimit: 0