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>
This commit is contained in:
Rich Trott 2018-10-08 17:47:32 -07:00
parent 43a1bc30c1
commit c001ba6575
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
/* eslint-disable required-modules */
'use strict';
function min(arr) {
let res = arr[0];

View File

@ -1,4 +1,4 @@
'use strict'; // eslint-disable-line required-modules
'use strict';
let invocations = 0;
const interval = setInterval(() => {}, 1000);