[clang] [clang-format] Separate License text and include blocks (PR #77918)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 15 06:13:42 PST 2024
================
@@ -3853,46 +3853,51 @@ struct FormatStyle {
/// Leave definition blocks as they are.
SDS_Leave,
/// Insert an empty line between definition blocks.
- SDS_Always,
+ SDS_One,
+ /// Insert two empty lines between definition blocks.
+ SDS_Two,
/// Remove any empty line between definition blocks.
SDS_Never
};
/// Specifies the use of empty lines to separate definition blocks, including
- /// classes, structs, enums, and functions.
+ /// license text, includes, classes, structs, enums, and functions.
----------------
seranu wrote:
Do you suggest having two new options, one for NewLinesAfterLicense and another on for NewLinesBetweenIncludes?
https://github.com/llvm/llvm-project/pull/77918
More information about the cfe-commits
mailing list