varabyte / kobweb-intellij-plugin

An official IntelliJ IDE plugin to include Kobweb-specific enhancements and understanding to your project
Apache License 2.0
10 stars 2 forks source link

Warn if detecting a non-top level ComponentStyle/ComponentVariant/Keyframes declaration #26

Open bitspittle opened 5 months ago

bitspittle commented 5 months ago
// Valid
val SomeStyle by ComponentStyle { ... }

// Invalid
class Sneaky {
   val SomeStyle by ComponentStyle { ... }
}