Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalafmt-core to 3.8.3 #1445

Open
wants to merge 3 commits into
base: series/4.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Scala Steward: Reformat with scalafmt 3.7.17
65023c3a2a2db480a25916926efa665f3b919fc2

# Scala Steward: Reformat with scalafmt 3.8.3
c43f0c680acf1069fa7632606aca389fbd831fa5
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.7.17"
version = "3.8.3"
runner.dialect = scala213
maxColumn = 120
align.preset = most
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package zio.config.refined
import eu.timepit.refined.numeric.{Divisible, Greater, GreaterEqual, Less, LessEqual, NonDivisible}

private[refined] trait NumericTestTypes {
type Less10 = Less[10]
type Greater10 = Greater[10]
type Less10 = Less[10]
type Greater10 = Greater[10]
type GreaterOrEqual10 = GreaterEqual[10]
type LessOrEqual10 = LessEqual[10]
type DivisibleBy10 = Divisible[10]
type LessOrEqual10 = LessEqual[10]
type DivisibleBy10 = Divisible[10]
type NonDivisibleBy10 = NonDivisible[10]
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package zio.config.refined
import eu.timepit.refined.numeric.{Divisible, Greater, GreaterEqual, Less, LessEqual, NonDivisible}

private[refined] trait NumericTestTypes {
type Less10 = Less[10]
type Greater10 = Greater[10]
type Less10 = Less[10]
type Greater10 = Greater[10]
type GreaterOrEqual10 = GreaterEqual[10]
type LessOrEqual10 = LessEqual[10]
type DivisibleBy10 = Divisible[10]
type LessOrEqual10 = LessEqual[10]
type DivisibleBy10 = Divisible[10]
type NonDivisibleBy10 = NonDivisible[10]
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package zio.config.magnolia

import zio.ConfigProvider
import zio.config._
import zio.config.derivation.{ name => derivedName }
import zio.config.derivation.{name => derivedName}
import zio.test.Assertion._
import zio.test.{ZIOSpecDefault, _}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ object YamlConfigSpec extends ZIOSpecDefault {
val configDataBaseConfig: Config[DataBaseConfig] = Config.string("url").to[DataBaseConfig]

val yamlConfig: String = s"""url: "some_url""""
val result = read(configDataBaseConfig from ConfigProvider.fromYamlStringZIO(yamlConfig))
val expected = DataBaseConfig("some_url")
val result = read(configDataBaseConfig from ConfigProvider.fromYamlStringZIO(yamlConfig))
val expected = DataBaseConfig("some_url")
assertZIO(result)(equalTo(expected))
}
)
Expand Down
Loading