Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.05 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.05 KB

sbt-bulky-sources

Scala CI codecov

The plugin shows a list of "large" source files, sorted in descending order by the number of lines.

Usage

<threshold> is an optional unsigned integer specifying the minimum number of lines for files

Compile configuration

sbt show bulkySources <threshold>

Output example:

[info] * (130, .../src/main/scala/../../../A.scala)
[info] * (100, .../src/main/scala/../../../B.scala)

Test configuration

sbt show test:bulkySources <threshold>

Output example:

[info] * (170, .../src/test/scala/../../../Y.scala)
[info] * (110, .../src/test/scala/../../../Z.scala)

Settings

  • bulkyThresholdInLines: Int — a fallback <threshold> value for empty input, default is 100

Installation

The plugin isn't published on any public repository. Stay tuned.