summaryrefslogtreecommitdiff
path: root/docs/tools/formatter.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tools/formatter.md')
-rw-r--r--docs/tools/formatter.md4
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.