You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/src/dotty/tools/dotc/config/ScalaSettings.scala
+2
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,8 @@ trait CommonScalaSettings:
124
124
125
125
/* Coverage settings */
126
126
valcoverageOutputDir=PathSetting("-coverage-out", "Destination for coverage classfiles and instrumentation data.", "", aliases =List("--coverage-out"))
127
+
valcoverageExcludeClasslikes:Setting[List[String]] =MultiStringSetting("-coverage-exclude-classlikes", "packages, classes and modules", "List of regexes for packages, classes and modules to exclude from coverage.", aliases =List("--coverage-exclude-classlikes"))
128
+
valcoverageExcludeFiles:Setting[List[String]] =MultiStringSetting("-coverage-exclude-files", "files", "List of regexes for files to exclude from coverage.", aliases =List("--coverage-exclude-files"))
127
129
128
130
/* Other settings */
129
131
valencoding:Setting[String] =StringSetting("-encoding", "encoding", "Specify character encoding used by source files.", Properties.sourceEncoding, aliases =List("--encoding"))
0 commit comments