eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
19 lines • 641 B
TypeScript
import type { Rule } from "eslint";
import type { AttributeOption, CalleeOption, ESLintRule, TagOption, VariableOption } from "../types/rule.js";
export type Options = [
Partial<AttributeOption & CalleeOption & TagOption & VariableOption & {
entryPoint?: string;
tailwindConfig?: string;
tsconfig?: string;
}>
];
export declare const noDeprecatedClasses: ESLintRule<Options>;
export declare function getOptions(ctx: Rule.RuleContext): {
attributes: any;
callees: any;
tags: any;
tailwindConfig: any;
tsconfig: any;
variables: any;
};
//# sourceMappingURL=no-deprecated-classes.d.ts.map