scala-clippy v0.6.1 Release Notes

Release Date: 2019-03-14 // about 5 years ago
  • ⚠ 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]\*" ) )
    

Previous changes from v0.6.0

  • ➕ Added support for fatal warnings, a new setting can be now set:

     settings( clippyFatalWarnings ++= List( "match may not be exhaustive[\\s\\S]\*" // regular expression ) )