UNPKG

eslint-plugin-better-tailwindcss

Version:

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

114 lines 2.51 kB
import { MatcherType, SelectorKind } from "../types/rule.js"; export declare const DEFAULT_CALLEE_SELECTORS: ({ kind: SelectorKind.Callee; match: { type: MatcherType.String; }[]; name: string; } | { kind: SelectorKind.Callee; match: { type: MatcherType.ObjectKey; }[]; name: string; } | { kind: SelectorKind.Callee; match: { path: string; type: MatcherType.ObjectValue; }[]; name: string; })[]; export declare const DEFAULT_ATTRIBUTE_SELECTORS: ({ kind: SelectorKind.Attribute; name: string; match?: never; } | { kind: SelectorKind.Attribute; match: ({ type: MatcherType.String; } | { type: MatcherType.ObjectKey; })[]; name: string; })[]; export declare const DEFAULT_VARIABLE_NAMES: [string, { match: MatcherType.String; }[]][]; export declare const DEFAULT_VARIABLE_SELECTORS: { kind: SelectorKind.Variable; match: { type: MatcherType.String; }[]; name: string; }[]; export declare const DEFAULT_TAG_SELECTORS: ({ kind: SelectorKind.Tag; path: string; } | { kind: SelectorKind.Callee; match: ({ type: MatcherType.String; match?: never; } | { match: { type: MatcherType.String; }[]; type: MatcherType.AnonymousFunctionReturn; })[]; path: string; })[]; export declare const DEFAULT_SELECTORS: ({ kind: SelectorKind.Callee; match: { type: MatcherType.String; }[]; name: string; } | { kind: SelectorKind.Callee; match: { type: MatcherType.ObjectKey; }[]; name: string; } | { kind: SelectorKind.Callee; match: { path: string; type: MatcherType.ObjectValue; }[]; name: string; } | { kind: SelectorKind.Tag; path: string; } | { kind: SelectorKind.Callee; match: ({ type: MatcherType.String; match?: never; } | { match: { type: MatcherType.String; }[]; type: MatcherType.AnonymousFunctionReturn; })[]; path: string; } | { kind: SelectorKind.Attribute; name: string; match?: never; } | { kind: SelectorKind.Attribute; match: ({ type: MatcherType.String; } | { type: MatcherType.ObjectKey; })[]; name: string; } | { kind: SelectorKind.Variable; match: { type: MatcherType.String; }[]; name: string; })[]; //# sourceMappingURL=default-options.d.ts.map