Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MoLow committed Nov 9, 2022
1 parent 0c8b715 commit fa63c9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/internal/watch_mode/files_watcher.js
@@ -1,6 +1,7 @@
'use strict';

const {
Error,
SafeMap,
SafeSet,
StringPrototypeStartsWith,
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit fa63c9b

Please sign in to comment.