summaryrefslogtreecommitdiff
path: root/std/prettier/README.md
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-30 03:16:48 +0100
committerGitHub <noreply@github.com>2020-01-29 21:16:48 -0500
commit73a3cc21d0e7ceec1275078db125f57ce97725fb (patch)
tree17d845d5d125d3ba8ecefa49e57e02e9c088c68b /std/prettier/README.md
parentf0a6062012c4e09553877c9feedb3fbc3d4625b9 (diff)
feat: dprint formatter (#3820)
* rewrite fmt_test in Rust, remove tools/fmt_test.py * remove //std/prettier
Diffstat (limited to 'std/prettier/README.md')
-rw-r--r--std/prettier/README.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/std/prettier/README.md b/std/prettier/README.md
deleted file mode 100644
index 6485d2da2..000000000
--- a/std/prettier/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# prettier
-
-Prettier APIs and tools for deno
-
-## Use as a CLI
-
-To formats the source files, run:
-
-```bash
-deno --allow-read --allow-write https://deno.land/std/prettier/main.ts
-```
-
-You can format only specific files by passing the arguments.
-
-```bash
-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.
-
-```bash
-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.
-
-```bash
-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:
-
-```ts
-import {
- prettier,
- prettierPlugins
-} from "https://deno.land/std/prettier/prettier.ts";
-
-prettier.format("const x = 1", {
- parser: "babel",
- plugins: prettierPlugins
-}); // => "const x = 1;"
-```