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 • 525 B
JavaScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export const CC_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^cc$"
};
export const CC_OBJECT_KEYS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.ObjectKey
}
],
name: "^cc$"
};
/** @see https://github.com/jorgebucaran/classcat */
export const CC = [
CC_STRINGS,
CC_OBJECT_KEYS
];
//# sourceMappingURL=cc.js.map