You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With fantomas 2.9.0 command parameters --indent 2 --pageWidth 90
before:
{ to'.WithCommon(fun c ->
{ c with WorkingDirectory =
Path.getFullName"./RegressionTesting/issue20/xunit-tests"
Verbosity = Some DotNet.Verbosity.Minimal }).WithParameters p0 c0 with Configuration =
DotNet.BuildConfiguration.Debug
NoBuild =
false
after
{ to'.WithCommon(fun c ->
{ c with WorkingDirectory =
Path.getFullName"./RegressionTesting/issue20/xunit-tests"
Verbosity = SomeDotNet.Verbosity.Minimal }).WithParameters p0 c0 with Configuration =
DotNet.BuildConfiguration.Debug
NoBuild =
false
which gives
Error FS0039: The value, namespace, type or module 'SomeDotNet' is not defined. Maybe you want one of the following:
The text was updated successfully, but these errors were encountered:
SteveGilham
changed the title
Meaningful spaces can be collapsed in Options
Meaningful spaces can be collapsed in record-with expressions
Nov 8, 2018
to'.WithCommon(fun o' ->
{ dotnetOptions o' with WorkingDirectory =
Path.getFullName "RegressionTesting/issue29"
Verbosity = Some DotNet.Verbosity.Minimal }).WithParameters
p0 c0) ""
became
to'.WithCommon(fun o' ->
{ dotnetOptionso' with WorkingDirectory =
Path.getFullName "RegressionTesting/issue29"
Verbosity = SomeDotNet.Verbosity.Minimal }).WithParameters
p0 c0) ""
With fantomas 2.9.0 command parameters
--indent 2 --pageWidth 90
before:
after
which gives
The text was updated successfully, but these errors were encountered: