commit
d52ffd5ac0
|
@ -8,6 +8,11 @@ tab_width = 4
|
|||
indent_size = 4
|
||||
indent_style = tab
|
||||
|
||||
[makefile]
|
||||
tab_width = 4
|
||||
indent_size = 4
|
||||
indent_style = tab
|
||||
|
||||
[*.d]
|
||||
dfmt_align_switch_statements = true
|
||||
dfmt_brace_style = allman
|
||||
|
|
4
dub.json
4
dub.json
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "dfmt",
|
||||
"description": "Dfmt is a formatter for D source code",
|
||||
"version": "0.2.2",
|
||||
"version": "0.3.1",
|
||||
"targetType": "executable",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": {
|
||||
"libdparse": "~master"
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 617b7c6f2c33cf7121c75ed2b88460d1416eb85c
|
||||
Subproject commit f0bb347b9aa9f9cb487531debc67c91057d602aa
|
|
@ -763,7 +763,7 @@ private:
|
|||
formatAt();
|
||||
break;
|
||||
case tok!"!":
|
||||
if (peekIs(tok!"is") && !peekBackIsOneOf(false, tok!"(", tok!"="))
|
||||
if ((peekIs(tok!"is") || peekIs(tok!"in")) && !peekBackIsOneOf(false, tok!"(", tok!"="))
|
||||
write(" ");
|
||||
goto case;
|
||||
case tok!"...":
|
||||
|
|
|
@ -62,7 +62,7 @@ else
|
|||
"indent_style|t", &optConfig.indent_style,
|
||||
"inplace", &inplace,
|
||||
"max_line_length", &optConfig.max_line_length,
|
||||
"max_line_length", &optConfig.max_line_length,
|
||||
"soft_max_line_length", &optConfig.dfmt_soft_max_line_length,
|
||||
"outdent_attributes", &handleBooleans,
|
||||
"outdent_labels", &handleBooleans,
|
||||
"space_after_cast", &handleBooleans,
|
||||
|
@ -144,7 +144,7 @@ else
|
|||
|
||||
private void printHelp()
|
||||
{
|
||||
writeln(`dfmt 0.3.0-dev
|
||||
writeln(`dfmt 0.3.1
|
||||
|
||||
Options:
|
||||
--help | -h Print this help message
|
||||
|
@ -158,7 +158,7 @@ Formatting Options:
|
|||
--indent_size
|
||||
--indent_style|t
|
||||
--inplace
|
||||
--max_line_length
|
||||
--soft_max_line_length
|
||||
--max_line_length
|
||||
--outdent_attributes
|
||||
--outdent_labels
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
unittest
|
||||
{
|
||||
auto result = name !in aa;
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
unittest
|
||||
{
|
||||
auto result = name !in aa;
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
unittest {
|
||||
auto result = name !in aa;
|
||||
}
|
Loading…
Reference in New Issue