eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
15 lines • 371 B
JavaScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export const TW_MERGE_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^twMerge$"
};
/** @see https://github.com/dcastil/tailwind-merge */
export const TW_MERGE = [
TW_MERGE_STRINGS
];
//# sourceMappingURL=twMerge.js.map