Loading

Spacing

Controls every space Curb adds or removes: around binary operators and declarations, before and after commas, dots, semicolons in for headers, method-name/parenthesis gaps, and square brackets.

csharp_space_after_cast
Space between a cast and its operand. Defaults to `false`
csharp_space_after_colon_in_inheritance_clause
Space after the colon in a base list. Defaults to `true`
csharp_space_after_comma
Space after a comma. Defaults to `true`
csharp_space_after_dot
Space after a dot. Defaults to `false`
csharp_space_after_keywords_in_control_flow_statements
Space between a control-flow keyword and its opening parenthesis. Defaults to `true`
csharp_space_after_semicolon_in_for_statement
Space after a semicolon in a for statement. Defaults to `true`
csharp_space_around_binary_operators
Spaces around binary and assignment operators. Defaults to `before_and_after`
csharp_space_around_declaration_statements
Extra spaces in declaration statements. false normalises; ignore leaves them alone. Defaults to `false`
csharp_space_before_colon_in_inheritance_clause
Space before the colon in a base list. Defaults to `true`
csharp_space_before_comma
Space before a comma. Defaults to `false`
csharp_space_before_dot
Space before a dot. Defaults to `false`
csharp_space_before_open_square_brackets
Space before an opening square bracket. Defaults to `false`
csharp_space_before_semicolon_in_for_statement
Space before a semicolon in a for statement. Defaults to `false`
csharp_space_between_empty_square_brackets
Space inside empty square brackets []. Defaults to `false`
csharp_space_between_method_call_empty_parameter_list_parentheses
Space inside an empty argument list (). Defaults to `false`
csharp_space_between_method_call_name_and_opening_parenthesis
Space between the method name and its opening parenthesis at a call site. Defaults to `false`
csharp_space_between_method_call_parameter_list_parentheses
Space just inside the parentheses of an argument list. Defaults to `false`
csharp_space_between_method_declaration_empty_parameter_list_parentheses
Space inside an empty parameter list (). Defaults to `false`
csharp_space_between_method_declaration_name_and_open_parenthesis
Space between the method name and its opening parenthesis. Defaults to `false`
csharp_space_between_method_declaration_parameter_list_parentheses
Space just inside the parentheses of a parameter list. Defaults to `false`
csharp_space_between_parentheses
Space just inside parentheses for specific constructs. Defaults to `false`
csharp_space_between_square_brackets
Space inside non-empty square brackets. Defaults to `false`