eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
25 lines • 524 B
JavaScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export const CX_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^cx$"
};
export const CX_OBJECT_KEYS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.ObjectKey
}
],
name: "^cx$"
};
/** @see https://cva.style/docs/api-reference#cx */
export const CX = [
CX_STRINGS,
CX_OBJECT_KEYS
];
//# sourceMappingURL=cx.js.map