eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
8 lines • 587 B
TypeScript
import type { AttributeNode, TagNode } from "es-html-parser";
import type { Rule } from "eslint";
import type { Literal } from "../types/ast.js";
import type { Attributes } from "../types/rule.js";
export declare function getLiteralsByHTMLAttribute(ctx: Rule.RuleContext, attribute: AttributeNode, attributes: Attributes): Literal[];
export declare function getAttributesByHTMLTag(ctx: Rule.RuleContext, node: TagNode): AttributeNode[];
export declare function getLiteralsByHTMLAttributeNode(ctx: Rule.RuleContext, attribute: AttributeNode): Literal[];
//# sourceMappingURL=html.d.ts.map