Skip to content

v0.14.0

Compare
Choose a tag to compare
@armanbilge armanbilge released this 04 Jun 18:13
· 258 commits to main since this release
65068d2

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

Full Changelog: v0.13.4...v0.14.0