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