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 • 529 B
JavaScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export const CNB_STRINGS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.String
}
],
name: "^cnb$"
};
export const CNB_OBJECT_KEYS = {
kind: SelectorKind.Callee,
match: [
{
type: MatcherType.ObjectKey
}
],
name: "^cnb$"
};
/** @see https://github.com/xobotyi/cnbuilder */
export const CNB = [
CNB_STRINGS,
CNB_OBJECT_KEYS
];
//# sourceMappingURL=cnb.js.map