aboutsummaryrefslogtreecommitdiffstats
path: root/build/hv-collector-analysis/src/test
AgeCommit message (Collapse)AuthorFilesLines
2019-04-15Create custom rule to report public modifiers in implIzabela Zawadzka1-0/+122
Change-Id: I383ca27a835943bd2dc2508425264ad7f64c7725 Signed-off-by: Izabela Zawadzka <izabela.zawadzka@nokia.com> Issue-ID: DCAEGEN2-1430
2018-11-29Custom detekt rule for logger usage checkPiotr Jaszczyk2-0/+127
Check if logger invocations don't use unoptimal invocations, eg. concatenation `debug("a=" + a)` instead of lambda use `debug {"a=" + a}` Unfortunately to avoid defining dependencies in many places and having circural dependencies it was necessarry to reorganize the maven module structure. The goal was to have `sources` module with production code and `build` module with build-time tooling (detekt rules among them). Issue-ID: DCAEGEN2-1002 Change-Id: I36e677b98972aaae6905d722597cbce5e863d201 Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>