Tomasz Fijałkowski
Tomasz Fijałkowski
Hi, base on the [CalculatorParser3](https://github.com/sirthias/parboiled/blob/c23ecc7e4ed664ccef63430446cbbdb5c576c268/examples-java/src/main/java/org/parboiled/examples/calculators/CalculatorParser3.java) example I create a parser to evaluate expressions like ``` key=='abc' ``` It works fin in java. However, when I converted the code to kotlin,...
Check name: [ParameterNumberCheck](https://checkstyle.org/config_sizes.html#ParameterNumber) ## Problem https://www.baeldung.com/jackson-annotations#1-jsoncreator https://fasterxml.github.io/jackson-annotations/javadoc/2.7/com/fasterxml/jackson/annotation/JsonCreator.html If I implement external API, I have no power over the number of parameters, e.g. when creating a DTO class for REST API...
Hi, I have a scalar type like ``` @GraphQLScalar @GraphQLType(name = "MyUserId", description = "My description") public class UserId { private String value; public UserId(String value) { this.value = value;...
I'd like to group tests by annotation, e.g. into business test cases and technical details tests. Based on this I'd like to exclude technical tests when generating a report for...
It will be great if Archunit could support such diagrams: ``` @startuml database "DB" component [Comp1] component [Comp 2] as Comp2 Comp2 DB @enduml ``` www.plantuml.com/plantuml/png/SoWkIImgAStDuU9AIIn9J4eiJbLGSd5IuahEpot8pqlDAr68TWOo3MCLR6pqz98DzVJixD0b5OnY5HAB5K1C8uWo8x0oBgY8hYxC4AY8hfs2YnCNbqDgNWhGQW00 In this case, the...
Regarding https://www.archunit.org/userguide/html/000_Index.html#_software_architecture_metrics it will be great to have package/component size metric. Size can be calculated based on lines of code (loc) or a number of instructions(noi), e.g. * component size...
Issue: #1132 Please review this change. If it is ok I'll add more tests.
Let's compare the two functions below ``` void fun1(List ints) { ints.stream() .filter(it -> it > 100) .map(it -> it + 10) .map(it -> it / 2) .forEach(System.out::println) } ```...