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 959 B
export var MatcherType; (function (MatcherType) { /** Matches return values of anonymous functions via nested matchers. */ MatcherType["AnonymousFunctionReturn"] = "anonymousFunctionReturn"; /** Matches all object keys that are strings. */ MatcherType["ObjectKey"] = "objectKeys"; /** Matches all object values that are strings. */ MatcherType["ObjectValue"] = "objectValues"; /** Matches all strings that are not matched by another matcher. */ MatcherType["String"] = "strings"; })(MatcherType || (MatcherType = {})); export var SelectorKind; (function (SelectorKind) { SelectorKind["Attribute"] = "attribute"; SelectorKind["Callee"] = "callee"; SelectorKind["Tag"] = "tag"; SelectorKind["Variable"] = "variable"; })(SelectorKind || (SelectorKind = {})); export const MATCHER_RESULT = { MATCH: true, NO_MATCH: false, UNCROSSABLE_BOUNDARY: "UNCROSSABLE_BOUNDARY" }; //# sourceMappingURL=rule.js.map