Skip to content

Commit

Permalink
fix: upload linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
supitsdu committed Sep 1, 2024
1 parent ff2b79e commit f00acfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/dye.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
// Core library modules
import { contrastRatio, relativeLuminance } from "./core/accessibility";
import { alpha, hue, lighten, saturate } from "./core/colorAdjustments";
import colorFormatter from "./core/colorFormatter";
import { fallbackColor, processColorInput } from "./core/inputSerializer";
import { isValidPlugin } from "./core/pluginValidation";
import colorFormatter from "./core/colorFormatter";

// Conversion utilities
import {
Expand All @@ -31,10 +31,10 @@ import { errorMessages } from "./constants/errorMessages";
// Types
import type {
ColorInput,
Dye,
DyeOptions,
DyePlugins,
DyeReturns,
Dye,
} from "./types";

function isValidDyeOptions<P extends DyePlugins>(
Expand Down
2 changes: 1 addition & 1 deletion test/isValidColor.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { forEachColorFormat } from "./__fixtures__";
import { isValidColor } from "../src/isValidColor";
import { forEachColorFormat } from "./__fixtures__";

describe("isValidColor", () => {
it("should return null for an invalid color object", () => {
Expand Down

0 comments on commit f00acfb

Please sign in to comment.