From 9dfebbc9496138efbeedc431068f41662c780f3e Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 21 Apr 2019 16:40:10 -0400 Subject: Fix eslint warnings (#2151) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk Co-authored-by: LE GOFF Vincent --- tests/028_args.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/028_args.ts') diff --git a/tests/028_args.ts b/tests/028_args.ts index 15df61555..51c5cb14b 100644 --- a/tests/028_args.ts +++ b/tests/028_args.ts @@ -1,3 +1,5 @@ -Deno.args.forEach(arg => { - console.log(arg); -}); +Deno.args.forEach( + (arg): void => { + console.log(arg); + } +); -- cgit v1.2.3