v0.14.0
This release rolls out a Scalafix integration, which will probably break your build in CI. Here's how to unbreak it.
Add a .scalafix.conf
file to your repo. For example, this is the configuration in http4s/http4s:
rules = [
Http4sFs2Linters
Http4sGeneralLinters
Http4sUseLiteralsSyntax
LeakingImplicitClassVal
ExplicitResultTypes
OrganizeImports
]
triggered.rules = [
Http4sFs2Linters
Http4sGeneralLinters
Http4sUseLiteralsSyntax
LeakingImplicitClassVal
]
Then, run scalafixAll
, fix as needed, and commit the changes.
What's Changed
- Add scalafix integration by @armanbilge in #159
- Don't check scalafixes on Scala 3 by @armanbilge in #161
- Set
scalafixScalaBinaryVersion
by @armanbilge in #162
Full Changelog: v0.13.4...v0.14.0