Adam Waldenberg
Adam Waldenberg
Right now, the repository interface supports methods with the notations ``` findBy: to select any information T deleteBy: To delete any information T ``` Also having support for `existBy` would...
It would be great if there was support for the automatic creation of indexes. In JPA there is an `@Index` annotation that does the same thing. It would be useful...
We need to be able to easier detect when gitinspector is broken by "bigger" changes such as the one introduced by revision aeb9ad6.
Add support for parsing comments and metrics in rust files (Rust programming language).
The convention seems to be to allow for commented content with a '#' hash character. Considering the format, maybe comments are also required to start at the beginning of lines?
[This method](https://github.com/ejwa/gitinspector/blob/9b5bbc469f8bc09d7e2f87329915837492ce79de/gitinspector/timeline.py#L79) is inefficient. In addition, it can probably be removed and replaced with a better solution.
Specifically, the following; ``` comment.__comment_begining__ comment.__comment_end__ comment.__comment__ comment.__comment_markers_must_be_at_begining__ metrics.__metric_eloc__ metrics.__metric_cc_tokens__ ``` These could be defined externally in a configuration directory. It would separate the the definitions out from the logic...
Add a complexity counter to each author. This is an idea to add functionality to gitinspector to track the "average" complexity of the code commited by an author. This would...
Add support for the Notification API. Either a seperate or a sub-component is probably the way to go .. To throw some ideas around, it would be cool if something...
## Testing Problem Sometimes it's useful to be able to control how providers are generating values - especially when communicating with models where it's not really appropriate to generate too...