File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
src/main/scala/org/scalajs/dom/experimental/intl Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change
1
+ version = 2.0 .0 -RC5
1
2
project.git = true
2
3
style = Scala.js
3
4
project.includeFilters = ["src/main/scala/org/scalajs/.*\\ .scala" ]
4
- bestEffortInDeeplyNestedCode = true
5
+ maxColumn = 79
6
+ docstrings = JavaDoc
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ sudo: false
2
2
language : scala
3
3
script :
4
4
- sbt ++$TRAVIS_SCALA_VERSION package doc example/compile
5
- - sbt scalafmtTest
5
+ - sbt scalafmtCheck
6
6
scala :
7
7
- 2.10.7
8
8
- 2.11.12
Original file line number Diff line number Diff line change 1
- sbt.version =0.13.17
1
+ sbt.version =1.2.8
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ val scalaJSVersion =
3
3
4
4
addSbtPlugin(" org.scala-js" % " sbt-scalajs" % scalaJSVersion)
5
5
6
- addSbtPlugin(" com.lihaoyi" % " scalatex-sbt-plugin" % " 0.3.9 " )
6
+ addSbtPlugin(" com.lihaoyi" % " scalatex-sbt-plugin" % " 0.3.11 " )
7
7
8
- addSbtPlugin(" com.geirsson " % " sbt-scalafmt" % " 0.6.8 " )
8
+ addSbtPlugin(" org.scalameta " % " sbt-scalafmt" % " 2.0.0 " )
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ object DateTimeFormatOptions {
195
195
second : js.UndefOr [String ] = js.undefined,
196
196
timeZoneName : js.UndefOr [String ] = js.undefined
197
197
): DateTimeFormatOptions = {
198
+ // format: off
198
199
js.Dynamic
199
200
.literal(
200
201
localeMatcher = localeMatcher,
@@ -212,6 +213,7 @@ object DateTimeFormatOptions {
212
213
timeZoneName = timeZoneName
213
214
)
214
215
.asInstanceOf [DateTimeFormatOptions ]
216
+ // format: on
215
217
}
216
218
}
217
219
You can’t perform that action at this time.
0 commit comments