We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe184d commit a10805eCopy full SHA for a10805e
lib/src/main/scala/org/typelevel/scalacoptions/ScalacOptions.scala
@@ -207,6 +207,11 @@ private[scalacoptions] trait ScalacOptions {
207
val async =
208
advancedOption("async", version => version.isBetween(V2_13_3, V3_0_0))
209
210
+ /** Maximal number of successive inlines. Default: 32.
211
+ */
212
+ def maxInlines(limit: Int) =
213
+ advancedOption("max-inlines", List(limit.toString), version => version >= V3_0_0)
214
+
215
/** Enable recommended warnings.
216
*/
217
def lintOption(
0 commit comments