eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
11 lines • 331 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPrefix = getPrefix;
exports.getSuffix = getSuffix;
function getPrefix(context) {
return context.theme.prefix ?? "";
}
function getSuffix(context) {
return !!context.theme.prefix ? ":" : "";
}
//# sourceMappingURL=prefix.async.v4.js.map
;