From 70abcf2d1049fc710ea5a439e30a83e15525bb7a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Mon, 8 Oct 2018 17:47:32 -0700 Subject: [PATCH] test: remove eslint-disable from fixtures Fixture files are not linted. Remove `eslint-disable` comments from fixture files. PR-URL: https://github.com/nodejs/node/pull/23345 Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Refael Ackermann Reviewed-By: Trivikram Kamat Reviewed-By: Vse Mozhet Byt --- test/fixtures/guess-hash-seed.js | 1 - test/fixtures/inspector-global-function.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/fixtures/guess-hash-seed.js b/test/fixtures/guess-hash-seed.js index 18a6f5124dc1d8..ffcfd75aac54a3 100644 --- a/test/fixtures/guess-hash-seed.js +++ b/test/fixtures/guess-hash-seed.js @@ -1,4 +1,3 @@ -/* eslint-disable required-modules */ 'use strict'; function min(arr) { let res = arr[0]; diff --git a/test/fixtures/inspector-global-function.js b/test/fixtures/inspector-global-function.js index d72bacd7ca9b36..6155ae5298cdef 100644 --- a/test/fixtures/inspector-global-function.js +++ b/test/fixtures/inspector-global-function.js @@ -1,4 +1,4 @@ -'use strict'; // eslint-disable-line required-modules +'use strict'; let invocations = 0; const interval = setInterval(() => {}, 1000);