Finish removing outdent_labels option
This commit is contained in:
parent
9c843c2c0a
commit
5695b3b951
|
@ -59,7 +59,6 @@ struct Config
|
||||||
dfmt_align_switch_statements = OptionalBoolean.t;
|
dfmt_align_switch_statements = OptionalBoolean.t;
|
||||||
dfmt_brace_style = BraceStyle.allman;
|
dfmt_brace_style = BraceStyle.allman;
|
||||||
dfmt_outdent_attributes = OptionalBoolean.t;
|
dfmt_outdent_attributes = OptionalBoolean.t;
|
||||||
dfmt_outdent_labels = OptionalBoolean.t;
|
|
||||||
dfmt_soft_max_line_length = 80;
|
dfmt_soft_max_line_length = 80;
|
||||||
dfmt_space_after_cast = OptionalBoolean.t;
|
dfmt_space_after_cast = OptionalBoolean.t;
|
||||||
dfmt_space_after_keywords = OptionalBoolean.t;
|
dfmt_space_after_keywords = OptionalBoolean.t;
|
||||||
|
|
|
@ -39,9 +39,6 @@ else
|
||||||
case "outdent_attributes":
|
case "outdent_attributes":
|
||||||
optConfig.dfmt_outdent_attributes = optVal;
|
optConfig.dfmt_outdent_attributes = optVal;
|
||||||
break;
|
break;
|
||||||
case "outdent_labels":
|
|
||||||
optConfig.dfmt_outdent_labels = optVal;
|
|
||||||
break;
|
|
||||||
case "space_after_cast":
|
case "space_after_cast":
|
||||||
optConfig.dfmt_space_after_cast = optVal;
|
optConfig.dfmt_space_after_cast = optVal;
|
||||||
break;
|
break;
|
||||||
|
@ -71,7 +68,6 @@ else
|
||||||
"max_line_length", &optConfig.max_line_length,
|
"max_line_length", &optConfig.max_line_length,
|
||||||
"soft_max_line_length", &optConfig.dfmt_soft_max_line_length,
|
"soft_max_line_length", &optConfig.dfmt_soft_max_line_length,
|
||||||
"outdent_attributes", &handleBooleans,
|
"outdent_attributes", &handleBooleans,
|
||||||
"outdent_labels", &handleBooleans,
|
|
||||||
"space_after_cast", &handleBooleans,
|
"space_after_cast", &handleBooleans,
|
||||||
"selective_import_space", &handleBooleans,
|
"selective_import_space", &handleBooleans,
|
||||||
"split_operator_at_line_end", &handleBooleans,
|
"split_operator_at_line_end", &handleBooleans,
|
||||||
|
@ -170,7 +166,6 @@ Formatting Options:
|
||||||
--soft_max_line_length
|
--soft_max_line_length
|
||||||
--max_line_length
|
--max_line_length
|
||||||
--outdent_attributes
|
--outdent_attributes
|
||||||
--outdent_labels
|
|
||||||
--space_after_cast
|
--space_after_cast
|
||||||
--selective_import_space
|
--selective_import_space
|
||||||
--split_operator_at_line_end
|
--split_operator_at_line_end
|
||||||
|
|
Loading…
Reference in New Issue