openrewrite
SKILL.md
OpenRewrite Recipe Development
This skill provides guidelines for developing OpenRewrite recipes and maintaining their tests, with a focus on import ordering issues.
Fixing Import Ordering Test Failures
đź”§ OpenRewrite recipe tests often fail due to import order differences, not actual transformation issues.
Problem
OpenRewrite recipe tests fail with diffs showing only import order differences:
-import java.util.List;
-import org.assertj.core.api.Assertions;
+import org.assertj.core.api.Assertions;
+import java.util.List;