prettier-plugin-organize-attributes
Version:
Organize your HTML attributes autmatically with Prettier 🧼
15 lines (14 loc) • 419 B
TypeScript
import { Parser } from "prettier";
export declare const parsers: {
html: Parser<any>;
vue: Parser<any>;
angular: Parser<any>;
};
export declare const options: {
[K in keyof PrettierPluginOrganizeAttributesParserOptions]: any;
};
export type PrettierPluginOrganizeAttributesParserOptions = {
attributeGroups: string[];
attributeSort: "ASC" | "DESC" | "NONE";
attributeIgnoreCase: boolean;
};