Skip to content

Commit

Permalink
Merge pull request #624 from typelevel/pr/disable-byname-implicit-lint
Browse files Browse the repository at this point in the history
Disable the `byname-implicit` lint on 2.13
  • Loading branch information
armanbilge authored Aug 12, 2023
2 parents 6bc62e0 + 7edfd10 commit 6c1ca23
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ object TypelevelSettingsPlugin extends AutoPlugin {
// - remove 'implicit-recursion' due to backward incompatibility with 2.12
// - remove 'recurse-with-default' due to backward incompatibility with 2.12
// - remove 'unused' because it is configured by '-Wunused'
"-Xlint:_,-implicit-recursion,-recurse-with-default,-unused"
// - remove '-byname-implicit' because scala/bug#12072
"-Xlint:_,-implicit-recursion,-recurse-with-default,-unused,-byname-implicit"
)

val warningsDotty = Seq.empty
Expand Down

0 comments on commit 6c1ca23

Please sign in to comment.