v1.0.0
Added 3
- Added include_comments option to control whether comments are included in scoring
- Added exclude_under option with default value of 6 to exclude files under n lines of code from output
- Exposed output_limit, score_cap, include_comments and exclude_under as CLI options
Changed 2
- Comments are no longer included in scoring by default due to new include_comments option defaulting to false
- Changed output_limit to only affect table format output and work as expected
Fixed 1
- Fixed ENOBUFS crash that could occur when analyzing very large projects
From FTA
Breaking changes
- Added the
include_commentsoption with a default value offalse, which means that comments are no longer included in scoring by default - Added the
exclude_underoption with a default value of6, which means that files that are under n lines of code are excluded from output. This option also takes into account theinclude_commentsoption. - Changed
output_limitto (a) only affect thetableformat output and (b) work as expected.
Other changes
- Exposed
output_limit,score_cap,include_commentsandexclude_underas CLI options - Fixed an
ENOBUFScrash that could occur when analyzing very large projects