Skip to content

Commit f4e000e

Browse files
committed
Update scalafmt to 3.5.8
1 parent 3113c30 commit f4e000e

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

project/scalafmt.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
version = 3.0.8
1+
version = 3.5.8
22
style = defaultWithAlign
3+
runner.dialect = scala212
34

45
project.git = true
56
danglingParentheses.preset = true
67
indentOperator.preset = spray
78
maxColumn = 100
89
rewrite.rules = [RedundantBraces, RedundantParens, SortImports]
910
spaces.inImportCurlyBraces = true
10-
unindentTopLevelOperators = true

src/main/scala/project/Processing.scala

+8-7
Original file line numberDiff line numberDiff line change
@@ -128,13 +128,14 @@ object Processing extends LazyLogging {
128128
.getOrCreate()
129129

130130
val processing = new Processing(spark)
131-
try processing.process(
132-
input = conf.input(),
133-
output = conf.output(),
134-
limit = conf.limit.toOption,
135-
lines = conf.linesToShow.toOption,
136-
debug = conf.debug()
137-
)
131+
try
132+
processing.process(
133+
input = conf.input(),
134+
output = conf.output(),
135+
limit = conf.limit.toOption,
136+
lines = conf.linesToShow.toOption,
137+
debug = conf.debug()
138+
)
138139
finally {
139140
if (conf.stay()) {
140141
logger.info("Waiting: press enter to exit")

0 commit comments

Comments
 (0)