diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2020-07-14 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 15:24:17 -0400 |
commit | cde4dbb35132848ffece59ef9cfaccff32347124 (patch) | |
tree | cc7830968c6decde704c8cfb83c9185193dc698f /docs/tools/formatter.md | |
parent | 9eca71caa1674c31f9cc5d4e86c03f10b59e0a00 (diff) |
Use dprint for internal formatting (#6682)
Diffstat (limited to 'docs/tools/formatter.md')
-rw-r--r-- | docs/tools/formatter.md | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/tools/formatter.md b/docs/tools/formatter.md index 16a5a9ab4..aedb6bdc9 100644 --- a/docs/tools/formatter.md +++ b/docs/tools/formatter.md @@ -16,8 +16,6 @@ cat file.ts | deno fmt - Ignore formatting code by preceding it with a `// deno-fmt-ignore` comment: -<!-- prettier-ignore-start --> - ```ts // deno-fmt-ignore export const identity = [ @@ -27,7 +25,5 @@ export const identity = [ ]; ``` -<!-- prettier-ignore-end --> - Or ignore an entire file by adding a `// deno-fmt-ignore-file` comment at the top of the file. |