- Update dependencies, including Scalariform to v2.10 #80 (by @Philippus)
Primary new features since Scalariform v0.2.5:
- Scala 2.13.0 support
- Trailing comma support
- new setting
UseUnicodeArrowsto allow reversing arrow replacement
Unclaimed project
Are you a maintainer of sbt-scalariform? Claim this project to take control of your public changelog and roadmap.
Changelog
sbt plugin adding support for source code formatting using Scalariform
Primary new features since Scalariform v0.2.5:
UseUnicodeArrows to allow reversing arrow replacementSupport for multiline param groups:
def foo[T]
(a: A)
(b: B)
(implicit t: T)
Enabled with allowParamGroupsOnNewlines set to true
Support for inline single case statement:
items.map { case (key, value) =>
(key, transform(value))
}
Enabled with singleCasePatternOnNewline set to false
Patch release
Fixes #32 via umanaged sources (credit to James Roper)