eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
22 lines • 426 B
JavaScript
import { MatcherType } from "../../types/rule.js";
export const OBJSTR_STRINGS = [
"objstr",
[
{
match: MatcherType.String
}
]
];
export const OBJSTR_OBJECT_KEYS = [
"objstr",
[
{
match: MatcherType.ObjectKey
}
]
];
/** @see https://github.com/lukeed/obj-str */
export const OBJSTR = [
OBJSTR_OBJECT_KEYS
];
//# sourceMappingURL=objstr.js.map