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

Refactor one-line modifiers into multi-line modifiers #8

Open bitspittle opened 5 months ago

bitspittle commented 5 months ago

This is apparently a feature provided by AS?

// Before
Modifier.a().b().c()

// After
Modifier
   .a()
   .b()
   .c()