From 15747825bc5024dddf0bc3c6d0d1a22a1cd1d950 Mon Sep 17 00:00:00 2001 From: younies Date: Sat, 27 Jun 2020 07:26:28 +0000 Subject: [PATCH] ICU-20963 Add .clang-format file to icu4c/source See #1143 --- icu4c/source/.clang-format | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 icu4c/source/.clang-format diff --git a/icu4c/source/.clang-format b/icu4c/source/.clang-format new file mode 100755 index 00000000000..83cbf646a43 --- /dev/null +++ b/icu4c/source/.clang-format @@ -0,0 +1,11 @@ +# © 2020 and later: Unicode, Inc. and others. +# License & terms of use: http://www.unicode.org/copyright.html + +--- +Language: Cpp +BasedOnStyle: LLVM +IndentWidth: 4 +ColumnLimit: 105 +AllowShortBlocksOnASingleLine: false +AllowShortIfStatementsOnASingleLine: true +...