-
Notifications
You must be signed in to change notification settings - Fork 275
fix: add number of lines stats per commit, add binary filter, other minor fixes #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
7800c8a
bdd3c96
08d7309
7d6cec1
ee8473a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ import app.model.DiffFile | |
| class ObjectiveCExtractor : ExtractorInterface { | ||
| companion object { | ||
| val LANGUAGE_NAME = "objectivec" | ||
| val FILE_EXTS = listOf("h", "m", "mm") | ||
| val FILE_EXTS = listOf("m", "mm") | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. as far as I know .h is valid file extension for object c, at least it's in use in Gecko
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, but for now we can't distinguish h file from C/C++ or ObjectiveC. This extension will be introduced with ANTLR parsing of files. |
||
| } | ||
|
|
||
| override fun extract(files: List<DiffFile>): List<CommitStats> { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure how this exactly works, I trust you though on this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JGit use SLF4J API, nop is an empty implementation of this api (stands for no operation).