From fa63c9b0cd2d13e6193666dd1d69c350e78b5ac1 Mon Sep 17 00:00:00 2001 From: Moshe Atlow Date: Wed, 9 Nov 2022 16:42:48 +0200 Subject: [PATCH] lint --- lib/internal/watch_mode/files_watcher.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/internal/watch_mode/files_watcher.js b/lib/internal/watch_mode/files_watcher.js index 3510f38d023fad..9e18b9ffe3bce4 100644 --- a/lib/internal/watch_mode/files_watcher.js +++ b/lib/internal/watch_mode/files_watcher.js @@ -1,6 +1,7 @@ 'use strict'; const { + Error, SafeMap, SafeSet, StringPrototypeStartsWith, @@ -91,7 +92,7 @@ class FilesWatcher extends EventEmitter { filterFile(file) { if (process.platform !== 'win32' && process.platform !== 'darwin') { - throw new Error("TMP DEBUG"); + throw new Error('TMP DEBUG'); // eslint-disable-line } this.watchPath(dirname(file)); this.#filteredFiles.add(file);