Skip to content

Commit 362b0fd

Browse files
committed
style: fix import/export ordering per ESLint rules
1 parent 2b70e2e commit 362b0fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/parser/colors.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from "vitest";
2-
import { COLORS, parseColor } from "./colors";
32
import { applyOpacity } from "../utils/colorUtils";
3+
import { COLORS, parseColor } from "./colors";
44

55
describe("COLORS", () => {
66
it("should export complete color palette", () => {

src/parser/shadows.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, expect, it } from "vitest";
2-
import { SHADOW_COLORS, SHADOW_SCALE, parseShadow } from "./shadows";
32
import { applyOpacity } from "../utils/colorUtils";
3+
import { SHADOW_COLORS, SHADOW_SCALE, parseShadow } from "./shadows";
44

55
describe("SHADOW_SCALE", () => {
66
it("should export complete shadow scale", () => {

src/parser/shadows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ export function parseShadow(cls: string, customColors?: Record<string, string>):
9797
}
9898

9999
// Export shadow scale and colors for testing/advanced usage
100-
export { SHADOW_SCALE, COLORS as SHADOW_COLORS };
100+
export { COLORS as SHADOW_COLORS, SHADOW_SCALE };

0 commit comments

Comments
 (0)