summaryrefslogtreecommitdiff
path: root/std/examples/catj.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/examples/catj.ts')
-rw-r--r--std/examples/catj.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/std/examples/catj.ts b/std/examples/catj.ts
index 513ae5235..a66a25ece 100644
--- a/std/examples/catj.ts
+++ b/std/examples/catj.ts
@@ -6,13 +6,12 @@
// Install using `deno install`
// $ deno install --allow-read https://deno.land/std/examples/catj.ts
-/* eslint-disable @typescript-eslint/no-use-before-define */
import { parse } from "../flags/mod.ts";
import * as colors from "../fmt/colors.ts";
const decoder = new TextDecoder();
-// eslint-disable-next-line @typescript-eslint/no-explicit-any
+// deno-lint-ignore no-explicit-any
function isObject(arg: any): arg is Record<string, unknown> {
return !!arg && arg.constructor === Object;
}
@@ -72,7 +71,7 @@ function printArray(array: unknown[], path: string): void {
}
}
-// eslint-disable-next-line @typescript-eslint/no-explicit-any
+// deno-lint-ignore no-explicit-any
function print(data: any[] | Record<string, unknown>): void {
if (Array.isArray(data)) {
printArray(data, "");