Subject: | Extra level of indenation when stacking both opening and closing tockens |
when using the following options:
--stack-opening-tokens
--stack-closing-tokens
this is produced:
my $opt_c = Text::CSV_XS->new( {
binary => 1,
sep_char => $opt_c,
always_quote => 1,
} );
but this is what i believe should be produced:
my $opt_c = Text::CSV_XS->new( {
binary => 1,
sep_char => $opt_c,
always_quote => 1,
} );
also, is it possible to remove the space between the stacked tokens to get this?
my $opt_c = Text::CSV_XS->new({
binary => 1,
sep_char => $opt_c,
always_quote => 1,
});
--stack-opening-tokens
--stack-closing-tokens
this is produced:
my $opt_c = Text::CSV_XS->new( {
binary => 1,
sep_char => $opt_c,
always_quote => 1,
} );
but this is what i believe should be produced:
my $opt_c = Text::CSV_XS->new( {
binary => 1,
sep_char => $opt_c,
always_quote => 1,
} );
also, is it possible to remove the space between the stacked tokens to get this?
my $opt_c = Text::CSV_XS->new({
binary => 1,
sep_char => $opt_c,
always_quote => 1,
});