UNPKG

eslint-plugin-better-tailwindcss

Version:

auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.

23 lines 427 B
import { MatcherType } from "../../types/rule.js"; export const CLSX_STRINGS = [ "clsx", [ { match: MatcherType.String } ] ]; export const CLSX_OBJECT_KEYS = [ "clsx", [ { match: MatcherType.ObjectKey } ] ]; /** @see https://github.com/lukeed/clsx */ export const CLSX = [ CLSX_STRINGS, CLSX_OBJECT_KEYS ]; //# sourceMappingURL=clsx.js.map