Vladimir Sitnikov
Vladimir Sitnikov
This reproduces for `kotlinx-nodejs` 0.0.7 :( `fs.createReadStream(path)` ``` Overload resolution ambiguity: public external fun createReadStream(path: String, options: `T$50` = ...): ReadStream defined in fs public external fun createReadStream(path: String, options:...
I guess the up-to-date wrappers would be moved to https://github.com/JetBrains/kotlin-wrappers, see https://github.com/JetBrains/kotlin-wrappers/issues/1681
AFAIK the approach here would be to add `gradle-refreshVersions` "manager" (like [gradle](https://github.com/renovatebot/renovate/tree/d858d85205cc99d7ecf617754612d2a17ff4eda0/lib/manager/gradle) and [gradle-wrapper](https://github.com/renovatebot/renovate/tree/d858d85205cc99d7ecf617754612d2a17ff4eda0/lib/manager/gradle-wrapper) )
@jmfayard , I believe the PR was just a sample integration. > If yes there is no need to use dependabot I'm afraid, that is the other way around. Dependabot...
I do not think parsing `versions.properties` is harder than calling Gradle though.
>With manual parsing, dependabot can't know that the key version.kotest is meant for io.kotest:kotest-.*:* Oh, I missed aliases.
@leonard84 , what do you think if the dependency is published as `runtime`? `runtime` is transitive. >`runtime` This scope indicates that the dependency is not required for compilation, but is...
@uschindler , what do you think of `@SuppressWarnings(...)`? I agree with @romani that the annotation is standard, and it is universally understood by developers. See a sample from ErrorProne: https://errorprone.info/bugpattern/UnsafeLocaleUsage...
Is there a way to declare `@SuppressForbidden("...")` annotation so the suppressions can be added without adding a new annotation every time? That is want to confine the forbidden signature, and...
De-lamdification might be non-trivial indeed. I guess suppression might be quite usable even if forbidden-apis did not see through lambda. > But nevertheless, the tool could apply suppressions like glob...