This repository has been archived by the owner on Mar 27, 2023. It is now read-only.
A constant has been added for common non-exhaustive-match warning pattern, you can now use:
import com.softwaremill.clippy.ClippySbtPlugin.WarningPatterns._
// ...
settings(
clippyFatalWarnings ++= List(
NonExhaustiveMatch,
".*\\[wartremover:.*\\].*[\\s\\S]*"
)
)