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 421 B
import { MatcherType } from "../../types/rule.js"; export const CC_STRINGS = [ "cc", [ { match: MatcherType.String } ] ]; export const CC_OBJECT_KEYS = [ "cc", [ { match: MatcherType.ObjectKey } ] ]; /** @see https://github.com/jorgebucaran/classcat */ export const CC = [ CC_STRINGS, CC_OBJECT_KEYS ]; //# sourceMappingURL=cc.js.map