Blank Lines
Controls the maximum number of consecutive blank lines Curb allows between declarations and between statements, and how many blank lines it enforces around namespaces, types, methods, properties, and fields.
csharp_blank_lines_after_file_scoped_namespace_directive
Blank lines after a file-scoped namespace declaration. Defaults to `1`
csharp_blank_lines_after_using_list
Blank lines below the last using directive. Defaults to `0`
csharp_blank_lines_around_field
Blank lines before and after each field. Defaults to `0`
csharp_blank_lines_around_invocable
Blank lines before and after each method or constructor. 0 means leave the author's. Defaults to `0`
csharp_blank_lines_around_namespace
Blank lines before and after a namespace declaration. Defaults to `0`
csharp_blank_lines_around_property
Blank lines before and after each property, indexer or event. Defaults to `0`
csharp_blank_lines_around_type
Blank lines before and after each type declaration. Defaults to `0`
csharp_blank_lines_inside_type
Blank lines below the opening brace and above the closing brace of a type. Defaults to `0`
csharp_keep_blank_lines_in_code
Maximum consecutive blank lines between statements. Defaults to `1`
csharp_keep_blank_lines_in_declarations
Maximum consecutive blank lines between members. Defaults to `1`