Róbert Papp
Róbert Papp
## Expected Behavior ``` The BindingContext was created with 1 issues. Run detekt CLI with --debug or set `detekt { debug = true }` in Gradle to see the error...
## Expected Behavior of the rule UnnecessaryAbstractClass should have a concise description like other rules ## Context I just updated Detekt 1.19.0 to 1.20.0 and got this failure: https://github.com/TWiStErRob/net.twisterrob.cinema/security/code-scanning/227 The...
I'm having these tests in `src/androidTest/kotlin`: ```kotlin class ColorUtilsKtTest { class ReplaceAlphaFrom( val useCase: String, @ColorInt val receiver: Int, @ColorInt val param: Int, @ColorInt val expected: Int, ) @TestFactory fun...
Thoughts? (to skip a test either `@Ignore` it or `throw AssumptionViolatedException()` e.g. via `org.junit.Assume.*`) Background: I just migrated away from my custom parser to the built-in one, and noticed this...
When I restart the phone, or turn internet on/off, not sure, but I've seen multiple notifications for all my talks come up days after the event. This happened about 3-4...
Similar issue has re-surfaced in JDK 8 with Kotlin: https://github.com/fasterxml/jackson-modules-base/issues/8 If an enclosing class has an `` `Escaped Name` ``, Jackson crashes with a `GenericSignatureFormatError`, even though it should just...
build.gradle: ```gradle dependencies{ implementation 'org.jetbrains.kotlinx:kotlinx-html-js:0.6.11' } ``` package.json: ```json "depenencies": { "kotlinx-html": "0.6.11" } ``` Generated code: ```js (function (_, Kotlin, $module$kotlinx_html_js) { ... }(module.exports, require('kotlin'), require('kotlinx-html-js')); ``` Notice the...
## Expected Behavior Option in Alt+Enter to add `@Suppress("RuleName")` to the finding's entity. ## Current Behavior No actions on violations.  ## Context There are some cases when we just...
Something like this: 
Only applications should define this attribute. They need to decide whether they want to allow users to backup their app, and if it's true, what to back up. Please remove...