Skip to content

Commit

Permalink
Merge pull request #53 from DavidGregory084/add-implicit-not-found-lint
Browse files Browse the repository at this point in the history
Add implicitNotFound / implicitAmbiguous linting flag
  • Loading branch information
DavidGregory084 authored Feb 18, 2022
2 parents 8b69bf9 + 580e697 commit c4de40a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ object TpolecatPlugin extends AutoPlugin {
ScalacOption("-Xlint:deprecation", addedIn = Some(V2_13_0), removedIn = Some(V3_0_0)), // Emit warning and location for usages of deprecated APIs.
ScalacOption("-Xlint:doc-detached", addedIn = Some(V2_11_0), removedIn = Some(V3_0_0)), // A Scaladoc comment appears to be detached from its element.
ScalacOption("-Xlint:implicit-recursion", addedIn = Some(V2_13_3), removedIn = Some(V3_0_0)), // Warn when an implicit resolves to an enclosing self-definition
ScalacOption("-Xlint:implicit-not-found", addedIn = Some(V2_13_0), removedIn = Some(V3_0_0)), // Warn when an @implicitNotFound or @implicitAmbigous annotation references an invalid type parameter.
ScalacOption("-Xlint:inaccessible", addedIn = Some(V2_11_0), removedIn = Some(V3_0_0)), // Warn about inaccessible types in method signatures.
ScalacOption("-Xlint:infer-any", addedIn = Some(V2_11_0), removedIn = Some(V3_0_0)), // Warn when a type argument is inferred to be `Any`.
ScalacOption("-Xlint:missing-interpolator", addedIn = Some(V2_11_0), removedIn = Some(V3_0_0)), // A string literal appears to be missing an interpolator id.
Expand Down

0 comments on commit c4de40a

Please sign in to comment.