| 1234567891011121314151617181920212223 |
- ---
- type: specs.openrewrite.org/v1beta/style
- name: io.moderne.spring.style
- styleConfigs:
- - org.openrewrite.java.style.ImportLayoutStyle:
- classCountToUseStarImport: 999
- nameCountToUseStarImport: 999
- layout:
- - import java.*
- - <blank line>
- - import javax.*
- - <blank line>
- - import all other imports
- - <blank line>
- - import org.springframework.*
- - <blank line>
- - import static all other imports
- - org.openrewrite.java.style.TabsAndIndentsStyle:
- useTabCharacter: true
- tabSize: 1
- indentSize: 1
- continuationIndent: 2
- indentsRelativeToExpressionStart: false
|