mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d29957ad17
Original: 0fc13fffbd
39 lines
798 B
Markdown
39 lines
798 B
Markdown
# prettier
|
|
|
|
Prettier APIs and tools for deno
|
|
|
|
## Use as a CLI
|
|
|
|
To formats the source files, run:
|
|
|
|
```console
|
|
deno --allow-run --allow-write https://deno.land/std/prettier/main.ts
|
|
```
|
|
|
|
You can format only specific files by passing the arguments.
|
|
|
|
```console
|
|
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.
|
|
|
|
```console
|
|
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:
|
|
|
|
```ts
|
|
import {
|
|
prettier,
|
|
prettierPlugins
|
|
} from "https://deno.land/std/prettier/prettier.ts";
|
|
|
|
prettier.format("const x = 1", {
|
|
parser: "babel",
|
|
plugins: prettierPlugins
|
|
}); // => "const x = 1;"
|
|
```
|