UNPKG

eslint-plugin-better-tailwindcss

Version:

auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.

9 lines 640 B
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 const VUE_CONTAINER_TYPES_TO_REPLACE_QUOTES: string[]; export declare const VUE_CONTAINER_TYPES_TO_INSERT_BRACES: string[]; 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