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 CN_STRINGS = [ "cn", [ { match: MatcherType.String } ] ]; export const CN_OBJECT_KEYS = [ "cn", [ { match: MatcherType.ObjectKey } ] ]; /** @see https://ui.shadcn.com/docs/installation/manual */ export const CN = [ CN_STRINGS, CN_OBJECT_KEYS ]; //# sourceMappingURL=cn.js.map