summaryrefslogtreecommitdiff
path: root/tests/028_args.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-04-21 16:40:10 -0400
committerGitHub <noreply@github.com>2019-04-21 16:40:10 -0400
commit9dfebbc9496138efbeedc431068f41662c780f3e (patch)
treec3718c3dc132d11c08c8fc18933daebf886bf787 /tests/028_args.ts
parent6cded14bdf313762956d4d5361cfe8115628b535 (diff)
Fix eslint warnings (#2151)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
Diffstat (limited to 'tests/028_args.ts')
-rw-r--r--tests/028_args.ts8
1 files changed, 5 insertions, 3 deletions
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);
+ }
+);