Yeikel

Results 183 issues of Yeikel

> While the ternary operator is pleasingly compact, its use can make code more difficult to read. It should therefore be avoided in favor of the more verbose if/else structure....

uses-dataflow
recipe

> Just because you can do something, doesn’t mean you should, and that’s the case with nested ternary operations. Nesting ternary operators results in the kind of code that may...

uses-dataflow
recipe

Using `object.equals` can lead to NPE. For example : ```java String a = null; String b = ""; boolean equal = a.equals(b); // NPE ``` `Objects.equals` does not have this...

uses-dataflow
recipe

Considering the following ```java private Set elements = Set.of(1,2,3); private boolean containsNumber(int number, Set elements) { return elements.contains(number); } ``` In this case, `containsNumber` is private and only a set...

uses-dataflow
recipe

Read more : https://reproducible-builds.org/ ```xml org.apache.maven.plugins maven-enforcer-plugin enforce-tool-versions enforce true No Snapshots Allowed during a release! Read more : https://reproducible-builds.org/ ```

recipe

```xml org.apache.maven.plugins maven-javadoc-plugin attach-javadocs jar ```

recipe

While the additional metadata that Dependabot brings with the PRs are nice to see and add a lot of value, generally what we truly care about is the update itself...

T: feature-request

Hi team, Do you have any plans to implement a predictable commit format/guidelines similar to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)? it seems that at the moment, any format is fine and as a...

🍏 core

It does not seem that Dependabot supports the following syntax : ``` 18 ${graphql.java.major.version}.2 ``` Pom file: https://github.com/vert-x3/vertx-web/blob/master/vertx-web-graphql/pom.xml#L31-L38 Dependabot Configuration file : https://github.com/vert-x3/vertx-web/blob/master/.github/dependabot.yml **Package ecosystem** maven **Package manager version** any

T: bug 🐞