1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/prettier
Ryan Dahl caa383a583 Rename assertEq to assertEquals (denoland/deno_std#242)
After some discussion it was found that assertEquals is more common
in JS (vs assertEqual, assertEq) and sounds better in the negated form:
assertNotEquals vs assertNE.
Original: 4cf39d4a14
2019-03-06 19:42:24 -05:00
..
testdata Add reusable prettier wrapper CLI (denoland/deno_std#165) 2019-02-01 10:16:39 -05:00
vendor Rename assertEq to assertEquals (denoland/deno_std#242) 2019-03-06 19:42:24 -05:00
main.ts Add eslint for linting (denoland/deno_std#235) 2019-03-04 19:53:35 -05:00
main_test.ts Rename assertEq to assertEquals (denoland/deno_std#242) 2019-03-06 19:42:24 -05:00
prettier.ts Add eslint for linting (denoland/deno_std#235) 2019-03-04 19:53:35 -05:00
README.md Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239) 2019-03-06 10:24:53 -05:00
util.ts Add eslint for linting (denoland/deno_std#235) 2019-03-04 19:53:35 -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/std/prettier/main.ts

You can format only specific files by passing the arguments.

deno --allow-run --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-run --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;"