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-09-10 17:41:23 -04:00
..
testdata prettier: support reading code from stdin (denoland/deno_std#498) 2019-06-30 11:10:00 -04:00
vendor feat: Add types to prettier (denoland/deno_std#591) 2019-09-10 17:41:23 -04:00
main.ts Make shebangs Linux compatible (denoland/deno_std#545) 2019-07-28 11:10:29 +00:00
main_test.ts ci: bump to v0.15.0 (denoland/deno_std#556) 2019-08-13 20:03:29 -04:00
prettier.ts feat: Add types to prettier (denoland/deno_std#591) 2019-09-10 17:41:23 -04:00
README.md prettier: support reading code from stdin (denoland/deno_std#498) 2019-06-30 11:10:00 -04:00
util.ts chore: Implement strict mode (denoland/deno_std#453) 2019-05-30 08:59:30 -04:00

prettier

Prettier APIs and tools for deno

Use as a CLI

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 format the input plain text stream. default parse it as typescript code.

cat path/to/script.ts | deno https://deno.land/std/prettier/main.ts
cat path/to/script.js | deno https://deno.land/std/prettier/main.ts --stdin-parser=babel
cat path/to/config.json | deno https://deno.land/std/prettier/main.ts --stdin-parser=json
cat path/to/README.md | deno https://deno.land/std/prettier/main.ts --stdin-parser=markdown

Use API

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;"