We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a926e83 commit 3338473Copy full SHA for 3338473
scaladoc/src/dotty/tools/scaladoc/Inkuire.scala
@@ -15,7 +15,10 @@ object Inkuire {
15
}
16
17
def generateInkuireConfig(externalMappings: Seq[String]): String = {
18
- val paths = ("../inkuire-db.json" +: externalMappings.map(_ + "../inkuire-db.json")).map(jsonString)
+ val paths =
19
+ List("../inkuire-db.json").map(jsonString)
20
+ // TODO: #13243
21
+ // ++ externalMappings.map(_ + "../inkuire-db.json")).map(jsonString)
22
jsonObject(("inkuirePaths", jsonList(paths))).toString
23
24
0 commit comments