UNPKG

eslint-plugin-better-tailwindcss

Version:

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

15 lines 366 B
import { MatcherType, SelectorKind } from "../../types/rule.js"; export const TW_JOIN_STRINGS = { kind: SelectorKind.Callee, match: [ { type: MatcherType.String } ], name: "^twJoin$" }; /** @see https://github.com/dcastil/tailwind-merge */ export const TW_JOIN = [ TW_JOIN_STRINGS ]; //# sourceMappingURL=twJoin.js.map