Matt Groth

Results 128 comments of Matt Groth

> That have sense. And I don't see how can we make [Parsing] faster. Is Parsing done in the same task as running rules? Parsing depends only on the source...

Hey, I just stumbled upon this issue. I think I have a use case: ``` style: ForbiddenImport: active: true ignoreAnnotated: - "JavaIoFileIsOk" imports: - value: "java.io.File" reason: 'case-sensitivity issues' -...

@BraisGabin Thanks for sharing your ideas! There are two potential issues I see from the user's perspective: **Issue 1: It seems messy and counterintuitive for there to be one "main"...

I think `:` would not be the best because, as you mentioned, it is part of yaml syntax. Same problem with `#` and `&`. `+` makes me think of addition...

Interesting point. Well, I did check GitHub and slack, and I only get the popup for both if I type the `@` alone. If I prefix the `@` with anything...

Hey @3flex thanks for making this branch. I have the same exact error as @jarroyoesp . I am using your k2 branch with my project, but I still get the...

I find it interesting that near the top of the stack trace is: ``` at org.jetbrains.kotlin.types.expressions.FunctionsTypingVisitor.createFunctionLiteralDescriptor(FunctionsTypingVisitor.kt:211) ``` It is interesting because the code that is causing this error is a...

@3flex I created a reproducer [in my composable-bug branch](https://github.com/mgroth0/detekt/tree/composable-bug) To reproduce, just run `detekt-test-compose:detektJvmTest` There are some narrow requirements to reproduce: - Call function from common source set - Common...

Shall we report this on the Compose Multiplatform Github repo? Or on Youtrack to the kotlin devs? It looks like it might be a deeper compiler issue. And in the...

`1.6.0-beta02` is the Compose Multiplatform Gradle Plugin version. Lower in the file I define the compiler version. See: https://github.com/mgroth0/detekt/blob/040394e2b5eb2dbbfec0baaacdf88113d4bb4591/detekt-test-compose/build.gradle.kts#L22 The compiler version is `1.5.6-dev2-kt2.0.0-Beta3`, which is the most up to...