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 • 531 B
JavaScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export const CLSX_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^clsx$"
};
export const CLSX_OBJECT_KEYS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.ObjectKey
}
],
name: "^clsx$"
};
/** @see https://github.com/lukeed/clsx */
export const CLSX = [
CLSX_STRINGS,
CLSX_OBJECT_KEYS
];
//# sourceMappingURL=clsx.js.map