summaryrefslogtreecommitdiff
path: root/std/flags/mod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/flags/mod.ts')
-rw-r--r--std/flags/mod.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/flags/mod.ts b/std/flags/mod.ts
index 05aeff6f2..94734fdab 100644
--- a/std/flags/mod.ts
+++ b/std/flags/mod.ts
@@ -6,7 +6,7 @@ export interface Args {
/** Contains all the arguments that didn't have an option associated with
* them. */
_: Array<string | number>;
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // deno-lint-ignore no-explicit-any
[key: string]: any;
}