UNPKG

eslint-plugin-better-tailwindcss

Version:

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

24 lines 530 B
import { MatcherType, SelectorKind } from "../../types/rule.js"; export const OBJSTR_STRINGS = { kind: SelectorKind.Callee, match: [ { type: MatcherType.String } ], name: "^objstr$" }; export const OBJSTR_OBJECT_KEYS = { kind: SelectorKind.Callee, match: [ { type: MatcherType.ObjectKey } ], name: "^objstr$" }; /** @see https://github.com/lukeed/obj-str */ export const OBJSTR = [ OBJSTR_OBJECT_KEYS ]; //# sourceMappingURL=objstr.js.map