aoc-automation
Version:
Advent of Code tool to automate the repetitive parts of AoC.
14 lines (13 loc) • 365 B
TypeScript
import type { Setup } from "../types/common";
declare const prettierJSON: ({ semicolons }: Setup) => {
arrowParens: string;
bracketSpacing: boolean;
printWidth: number;
proseWrap: string;
semi: boolean;
singleQuote: boolean;
tabWidth: number;
useTabs: boolean;
trailingComma: string;
};
export default prettierJSON;