1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/prettier
Ryan Dahl 1b359f4106 walk() should not use deprecated FileInfo.path (denoland/deno_std#398)
The walk() interface is change to return a WalkInfo object which
contains both the resolved filename and FileInfo object from stat.

The followSymlinks feature is disabled for now.

Original: 07ca4f9629
2019-05-14 17:14:08 -04:00
..
testdata Fix prettier check in empty files (denoland/deno_std#302) 2019-03-24 11:26:47 -04:00
vendor upgrade prettier to v1.17.1 (denoland/deno_std#399) 2019-05-13 12:56:00 -04:00
main.ts walk() should not use deprecated FileInfo.path (denoland/deno_std#398) 2019-05-14 17:14:08 -04:00
main_test.ts walk() should not use deprecated FileInfo.path (denoland/deno_std#398) 2019-05-14 17:14:08 -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;"