Skip to main content
Module

std/_tools/format.js

Deno standard library
Go to Latest
File
#!/usr/bin/env -S deno run --allow-read --allow-runconst p = Deno.run({ cmd: [Deno.execPath(), "fmt", "--config", "deno.json", ...Deno.args],});const status = await p.status();Deno.exit(status.code);