commit | d38bb9f317c07bd20a6ea8c5bbc30f43809c3000 | [log] [tgz] |
---|---|---|
author | Nikolay Vitkov <[email protected]> | Tue Apr 22 17:21:37 2025 |
committer | Devtools-frontend LUCI CQ <devtools-frontend-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Apr 23 07:11:21 2025 |
tree | d98e83a702c241122c9baffaa1381d060c3d42b1 | |
parent | b55c964ae04c19fa1260f0499bbac9107f5bb056 [diff] [blame] |
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();