UNPKG

create-cen-app

Version:
13 lines (11 loc) 353 B
import fs from "fs-extra"; import prettier from "prettier"; export const formatFile = (path: string, parser: "typescript" | "scss") => { const content = fs.readFileSync(path, "utf-8"); const formattedContent = prettier.format(content, { printWidth: 100, tabWidth: 2, parser: parser, }); fs.writeFileSync(path, formattedContent); };