Update EsLint to newer version

Needed to allow the bug to be fixed and closed.

Bug: 402358297
Change-Id: I1e3c6008b6da565cbfc59c021bc4f67ba5b6a6f0
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6479834
Reviewed-by: Benedikt Meurer <[email protected]>
Commit-Queue: Benedikt Meurer <[email protected]>
Auto-Submit: Nikolay Vitkov <[email protected]>
diff --git a/node_modules/eslint/messages/file-not-found.js b/node_modules/eslint/messages/file-not-found.js
index 1a62fcf..50e483b 100644
--- a/node_modules/eslint/messages/file-not-found.js
+++ b/node_modules/eslint/messages/file-not-found.js
@@ -1,9 +1,9 @@
 "use strict";
 
-module.exports = function(it) {
-    const { pattern, globDisabled } = it;
+module.exports = function (it) {
+	const { pattern, globDisabled } = it;
 
-    return `
+	return `
 No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
 Please check for typing mistakes in the pattern.
 `.trimStart();