From ebac4915018083bf7c6e3628de1e9c4b9ed85758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sch=C3=A4fer?= Date: Wed, 18 Oct 2017 20:25:43 +0200 Subject: [PATCH] Disable patvars warnings There are simply too many unused pattern vars and I don't want to fix them right now. And watching all of the warnings everywhere is annoying. --- project/Util.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Util.scala b/project/Util.scala index 05bc85613..89556cd2e 100644 --- a/project/Util.scala +++ b/project/Util.scala @@ -48,7 +48,7 @@ object Util { "-Yno-adapted-args", "-Ywarn-dead-code", "-Ywarn-numeric-widen", - "-Ywarn-unused:-params,-implicits,_", + "-Ywarn-unused:-patvars,-params,-implicits,_", "-Ywarn-unused-import" ) }),