From 0b17419ccf272269193d98ce58d8037c24b70932 Mon Sep 17 00:00:00 2001 From: hrj Date: Mon, 3 Jan 2022 17:24:35 +0530 Subject: [PATCH] disable unsupported option Signed-off-by: hrj --- build.sbt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index fe85472..f95d684 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,9 @@ lazy val root = (project in file(".")).settings( version := "0.1.0-SNAPSHOT", semanticdbEnabled := true, semanticdbVersion := scalafixSemanticdb.revision, - scalafixScalaBinaryVersion := "3.1" + + // This is apparently not supported on Scala 3 currently + // scalafixScalaBinaryVersion := "3.1" ) ), name := "LibreCaptcha",