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 CN_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^cn$"
};
export const CN_OBJECT_KEYS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.ObjectKey
}
],
name: "^cn$"
};
/** @see https://ui.shadcn.com/docs/installation/manual */
export const CN = [
CN_STRINGS,
CN_OBJECT_KEYS
];
//# sourceMappingURL=cn.js.map