Róbert Papp
Róbert Papp
## Context IDEA has this rule: https://github.com/search?q=repo%3AJetBrains%2Fintellij-community%20ObjectPropertyNameInspection&type=code  Which auto-inserts `@Suppress("ObjectPropertyName")` ## Expected Behavior of the rule `ObjectPropertyNaming` in detekt should match the name so one suppression is enough: ```patch...
## Expected Behavior No finding. ## Observed Behavior > Test.kt:76:21 (see cursor in screenshot): Multiple occurrences of the same string literal within a single file detected. Prefer extracting the string...
## Steps to Reproduce ```kotlin public enum class PublicEnum { Foo, Bar, } ``` Configuration: ```gradle.kts detekt.allRules = true // Does not contain relevant lines, just a few rules deactivated...
I have an SVN mono-repository, which has the following structure (unrelated stuff not listed): ``` /Projects/project1 /Projects/project1/libs (svn:externals) /Projects/project2 /Projects/project2/libs (svn:externals) /Libraries/library1/library2 (svn:externals) /Libraries/library2 ``` and I would like to...
 ``` WARN: Error executing gradle wrapper update command. It can be not a critical one though. (branch="renovate/gradle-8.7.x") { "err": { "cmd": "/bin/sh -c ./gradlew :wrapper --gradle-distribution-url https://services.gradle.org/distributions/gradle-8.7-all.zip", "stderr": "\nFAILURE:...
See https://github.com/gradle/gradle/issues/1156#issuecomment-1958194752
https://github.com/TWiStErRob/net.twisterrob.gradle/blob/main/gradle/plugins/src/main/kotlin/net/twisterrob/gradle/build/publishing/net.twisterrob.gradle.build.publish.gradle.kts#L86 is fixed.
From Color Filters at AGP 8.2.0 ``` WARNING: The specified Android SDK Build Tools version (33.0.2) is ignored, as it is below the minimum supported version (34.0.0) for Android Gradle...
https://docs.gradle.org/7.0-rc-1/userguide/implementing_gradle_plugins.html#plugin-with-variants
https://github.com/TWiStErRob/net.twisterrob.gradle/blob/cf75d8151c229dd8b1458d54512faa1b8edfb051/plugin/base/src/testFixtures/kotlin/net/twisterrob/test/process/index.kt#L27-L39 ```kotlin val out = StringWriter(); thread { process.inputStream.reader().copyTo(out) } ``` See https://stackoverflow.com/a/3285479/253468 and https://github.com/TWiStErRob/net.twisterrob.inventory/pull/359 also assert `waitFor` return value.