Prettier APIs and tools for deno
To formats the source files, run:
deno --allow-read --allow-write https://deno.land/std/prettier/main.ts
You can format only specific files by passing the arguments.
deno --allow-read --allow-write https://deno.land/std/prettier/main.ts path/to/script.ts
You can format files on specific directory by passing the directory's path.
deno --allow-read --allow-write https://deno.land/std/prettier/main.ts path/to/script.ts
You can use APIs of prettier as the following:
import {
prettier,
prettierPlugins
} from "https://deno.land/std/prettier/prettier.ts";
prettier.format("const x = 1", {
parser: "babel",
plugins: prettierPlugins
}); // => "const x = 1;"