Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions packages/lint/src/rules/gsap.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,31 @@ describe("GSAP rules", () => {
expect(conflicts[0]?.message).toMatch(/x\/scale|scale\/x/);
});

it("does not duplicate the CSS transform text when one declaration matches both translate and scale", async () => {
const html = `
<html><body>
<div id="root" data-composition-id="c1" data-width="1920" data-height="1080">
<div id="scene-1" class="scene-1">hi</div>
</div>
<style>
.scene-1 { transform: scale(1.08) translate3d(1.5%, 0, 0); }
</style>
<script>
window.__timelines = window.__timelines || {};
const tl = gsap.timeline({ paused: true });
tl.to(".scene-1", { duration: 1, x: 100, scale: 1.2 });
window.__timelines["c1"] = tl;
</script>
</body></html>`;
const result = await lintHyperframeHtml(html);
const conflict = result.findings.find((f) => f.code === "gsap_css_transform_conflict");
expect(conflict).toBeDefined();
const doubled = "scale(1.08) translate3d(1.5%, 0, 0) scale(1.08) translate3d(1.5%, 0, 0)";
expect(conflict?.message).not.toContain(doubled);
expect(conflict?.fixHint).not.toContain(doubled);
expect(conflict?.message).toContain("transform: scale(1.08) translate3d(1.5%, 0, 0)");
});

// --- Inline style transform detection tests ---

it("warns when inline style transform: translateX conflicts with GSAP x", async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/lint/src/rules/gsap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@ export const gsapRules: LintRule<LintContext>[] = [
scaleProps.length > 0 ? matchCssTransform(sel, cssScaleSelectors) : undefined;
if (!cssFromTranslate && !cssFromScale) continue;
const existing = conflicts.get(sel) ?? {
cssTransform: [cssFromTranslate, cssFromScale].filter(Boolean).join(" "),
cssTransform: [...new Set([cssFromTranslate, cssFromScale].filter(Boolean))].join(" "),
props: new Set<string>(),
raw: call.raw,
};
Expand Down