diff options
Diffstat (limited to 'std/encoding/toml.ts')
-rw-r--r-- | std/encoding/toml.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/toml.ts b/std/encoding/toml.ts index 48035945c..add9880ce 100644 --- a/std/encoding/toml.ts +++ b/std/encoding/toml.ts @@ -452,7 +452,7 @@ class Parser { } obj[k] = v; if (v instanceof Object) { - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any this._propertyClean(v as any); } } @@ -486,7 +486,7 @@ class Dumper { this.srcObject = srcObjc; } dump(): string[] { - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any this.output = this._parse(this.srcObject as any); this.output = this._format(); return this.output; |