diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-03 16:19:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 16:19:29 +0100 |
commit | 8e914be7420715620cad74fbb020c5e87ac875a2 (patch) | |
tree | 2fefc0111f85533de2bd24e54f70c6c1241e3d3b /std/_util/deep_assign.ts | |
parent | e736d0f60f6cdf38e2d317ee08a7125de9e57d69 (diff) |
build: migrate to dlint (#8176)
This commit migrates repository from using "eslint"
to "dlint" for linting JavaScript code.
Diffstat (limited to 'std/_util/deep_assign.ts')
-rw-r--r-- | std/_util/deep_assign.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/std/_util/deep_assign.ts b/std/_util/deep_assign.ts index 43606daa3..3c2785683 100644 --- a/std/_util/deep_assign.ts +++ b/std/_util/deep_assign.ts @@ -14,11 +14,11 @@ export function deepAssign<T, U, V, W>( source3: W, ): T & U & V & W; export function deepAssign( - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any target: Record<string, any>, - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any ...sources: any[] -): // eslint-disable-next-line @typescript-eslint/ban-types +): // deno-lint-ignore ban-types object | undefined { for (let i = 0; i < sources.length; i++) { const source = sources[i]; |