You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
674 B
23 lines
674 B
--- |
|
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
|
|
|