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 420 B
import { MatcherType } from "../../types/rule.js"; export const CX_STRINGS = [ "cx", [ { match: MatcherType.String } ] ]; export const CX_OBJECT_KEYS = [ "cx", [ { match: MatcherType.ObjectKey } ] ]; /** @see https://cva.style/docs/api-reference#cx */ export const CX = [ CX_STRINGS, CX_OBJECT_KEYS ]; //# sourceMappingURL=cx.js.map