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 665 B
import type { Rule } from "eslint"; import type { SvelteAttribute, SvelteStartTag } from "svelte-eslint-parser/lib/ast/index.js"; import type { Literal } from "../types/ast.js"; import type { Attributes } from "../types/rule.js"; export declare const SVELTE_CONTAINER_TYPES_TO_REPLACE_QUOTES: string[]; export declare const SVELTE_CONTAINER_TYPES_TO_INSERT_BRACES: string[]; export declare function getAttributesBySvelteTag(ctx: Rule.RuleContext, node: SvelteStartTag): SvelteAttribute[]; export declare function getLiteralsBySvelteAttribute(ctx: Rule.RuleContext, attribute: SvelteAttribute, attributes: Attributes): Literal[]; //# sourceMappingURL=svelte.d.ts.map