summaryrefslogtreecommitdiff
path: root/test/fixtures
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-10-08 17:47:32 -0700
committerRich Trott <rtrott@gmail.com>2018-10-08 20:01:07 -0700
commitc001ba65753f3eb41ecd8df3b013126593d95247 (patch)
tree0caacb4cdf473d810f3f289fd7d46173dfbbc2bf /test/fixtures
parent43a1bc30c1e14953e8570d99e91b1a1192712cc4 (diff)
downloadandroid-node-v8-c001ba65753f3eb41ecd8df3b013126593d95247.tar.gz
android-node-v8-c001ba65753f3eb41ecd8df3b013126593d95247.tar.bz2
android-node-v8-c001ba65753f3eb41ecd8df3b013126593d95247.zip
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 <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'test/fixtures')
-rw-r--r--test/fixtures/guess-hash-seed.js1
-rw-r--r--test/fixtures/inspector-global-function.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/fixtures/guess-hash-seed.js b/test/fixtures/guess-hash-seed.js
index 18a6f5124d..ffcfd75aac 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 d72bacd7ca..6155ae5298 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);