rewrite.yml 674 B

1234567891011121314151617181920212223
  1. ---
  2. type: specs.openrewrite.org/v1beta/style
  3. name: io.moderne.spring.style
  4. styleConfigs:
  5. - org.openrewrite.java.style.ImportLayoutStyle:
  6. classCountToUseStarImport: 999
  7. nameCountToUseStarImport: 999
  8. layout:
  9. - import java.*
  10. - <blank line>
  11. - import javax.*
  12. - <blank line>
  13. - import all other imports
  14. - <blank line>
  15. - import org.springframework.*
  16. - <blank line>
  17. - import static all other imports
  18. - org.openrewrite.java.style.TabsAndIndentsStyle:
  19. useTabCharacter: true
  20. tabSize: 1
  21. indentSize: 1
  22. continuationIndent: 2
  23. indentsRelativeToExpressionStart: false