1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/format.ts

14 lines
245 B
TypeScript
Raw Normal View History

#!/usr/bin/env deno --allow-run
import { exit, run } from "deno";
async function main() {
const prettier = run({
args: ["bash", "-c", "prettier --write *.ts **/*.ts"]
});
const s = await prettier.status();
exit(s.code);
}
main();