deno/std/prettier
Ry Dahl a4dde552de
Revert "feat(flags): script arguments come after '--'" (#3681)
Due to complaints about ergonomics and because it breaks shebang on
linux.

This reverts commit 2d5457df15.

BREAKING CHANGE
2020-01-15 19:21:35 -05:00
..
testdata feat: Deno.args now does not include script (#3628) 2020-01-09 11:37:01 -07:00
vendor upgrade: Prettier 1.19.1 (#3305) 2019-11-09 08:24:43 -05:00
ignore.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
ignore_test.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
main.ts feat: Deno.args now does not include script (#3628) 2020-01-09 11:37:01 -07:00
main_test.ts Revert "feat(flags): script arguments come after '--'" (#3681) 2020-01-15 19:21:35 -05:00
prettier.ts Happy new year! (#3578) 2020-01-02 15:13:47 -05:00
README.md Move everything into std subdir 2019-10-09 17:10:09 -04:00
util.ts Happy new year! (#3578) 2020-01-02 15:13: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

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