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-04-14 10:53:19 -04:00
..
testdata Fix prettier check in empty files (denoland/deno_std#302) 2019-03-24 11:26:47 -04:00
vendor Rename assertEq to assertEquals (denoland/deno_std#242) 2019-03-06 19:42:24 -05:00
main.ts Fix prettier check in empty files (denoland/deno_std#302) 2019-03-24 11:26:47 -04:00
main_test.ts Fix eslint warnings and small clean ups (denoland/deno_std#339) 2019-04-14 10:53:19 -04:00
prettier.ts Add eslint for linting (denoland/deno_std#235) 2019-03-04 19:53:35 -05:00
README.md Use fs.walk rather than git ls-files (denoland/deno_std#241) 2019-03-08 02:01:39 -05:00
test.ts Test reorganization (denoland/deno_std#290) 2019-03-18 12:49:54 -04:00
util.ts refactor: use execPath where appropriate (denoland/deno_std#255) 2019-03-08 12:41:47 -05: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

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