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-05-30 08:59:30 -04:00
..
testdata chore: Implement strict mode (denoland/deno_std#453) 2019-05-30 08:59:30 -04:00
vendor upgrade prettier to v1.17.1 (denoland/deno_std#399) 2019-05-13 12:56:00 -04:00
main.ts Prettier: support for specified files and glob mode (denoland/deno_std#438) 2019-05-25 17:17:56 +03:00
main_test.ts chore: Implement strict mode (denoland/deno_std#453) 2019-05-30 08:59:30 -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 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

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