eslint-plugin-readable-tailwind
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
7 lines • 501 B
TypeScript
import type { Rule } from "eslint";
import type { AST } from "vue-eslint-parser";
import type { Literal } from "../types/ast.js";
import type { Attributes } from "../types/rule.js";
export declare function getAttributesByVueStartTag(ctx: Rule.RuleContext, node: AST.VStartTag): (AST.VAttribute | AST.VDirective)[];
export declare function getLiteralsByVueAttribute(ctx: Rule.RuleContext, attribute: AST.VAttribute | AST.VDirective, attributes: Attributes): Literal[];
//# sourceMappingURL=vue.d.ts.map