[PATCH] D153208: [clang-format] Add InsertNewlineAtEOF to .clang-format files
Owen Pan via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 20 08:30:21 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGbca11bafba97: [clang-format] Add InsertNewlineAtEOF to .clang-format files (authored by owenpan).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153208/new/
https://reviews.llvm.org/D153208
Files:
clang/include/clang/Format/.clang-format
clang/lib/Format/.clang-format
clang/tools/clang-format/.clang-format
clang/unittests/Format/.clang-format
clang/unittests/Format/FormatTestMacroExpansion.cpp
Index: clang/unittests/Format/FormatTestMacroExpansion.cpp
===================================================================
--- clang/unittests/Format/FormatTestMacroExpansion.cpp
+++ clang/unittests/Format/FormatTestMacroExpansion.cpp
@@ -259,4 +259,4 @@
} // namespace
} // namespace test
} // namespace format
-} // namespace clang
\ No newline at end of file
+} // namespace clang
Index: clang/unittests/Format/.clang-format
===================================================================
--- clang/unittests/Format/.clang-format
+++ clang/unittests/Format/.clang-format
@@ -1,4 +1,5 @@
BasedOnStyle: LLVM
InsertBraces: true
+InsertNewlineAtEOF: true
LineEnding: LF
RemoveBracesLLVM: true
Index: clang/tools/clang-format/.clang-format
===================================================================
--- clang/tools/clang-format/.clang-format
+++ clang/tools/clang-format/.clang-format
@@ -1,4 +1,5 @@
BasedOnStyle: LLVM
InsertBraces: true
+InsertNewlineAtEOF: true
LineEnding: LF
RemoveBracesLLVM: true
Index: clang/lib/Format/.clang-format
===================================================================
--- clang/lib/Format/.clang-format
+++ clang/lib/Format/.clang-format
@@ -1,4 +1,5 @@
BasedOnStyle: LLVM
InsertBraces: true
+InsertNewlineAtEOF: true
LineEnding: LF
RemoveBracesLLVM: true
Index: clang/include/clang/Format/.clang-format
===================================================================
--- clang/include/clang/Format/.clang-format
+++ clang/include/clang/Format/.clang-format
@@ -1,4 +1,5 @@
BasedOnStyle: LLVM
InsertBraces: true
+InsertNewlineAtEOF: true
LineEnding: LF
RemoveBracesLLVM: true
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D153208.532950.patch
Type: text/x-patch
Size: 1655 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230620/65f52198/attachment.bin>
More information about the cfe-commits
mailing list