1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/prettier
2019-02-09 15:41:05 -05:00
..
testdata Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
vendor Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
main.ts Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
main_test.ts Bump CI to v0.2.11 (denoland/deno_std#183) 2019-02-09 15:41:05 -05:00
prettier.ts Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
README.md Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
util.ts Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00

prettier

Prettier APIs and tools for deno

Use as a CLI

To formats the source files, run:

deno --allow-run --allow-write https://deno.land/x/std/prettier/main.ts

You can format only specific files by passing the arguments.

deno --allow-run --allow-write https://deno.land/x/std/prettier/main.ts path/to/script.ts

You can format files on specific directory by passing the directory's path.

deno --allow-run --allow-write https://deno.land/x/std/prettier/main.ts path/to/script.ts

Use API

You can use APIs of prettier as the following:

import {
  prettier,
  prettierPlugins
} from "https://deno.land/x/std/prettier/prettier.ts";

prettier.format("const x = 1", {
  parser: "babel",
  plugins: prettierPlugins
}); // => "const x = 1;"