blob: 50e483bc1a3f35dc67d508bfd75746d3aae06a5e [file] [log] [blame]
Simon Zünd52e20202021-06-16 06:34:281"use strict";
2
Nikolay Vitkovd38bb9f2025-04-22 17:21:373module.exports = function (it) {
4 const { pattern, globDisabled } = it;
Simon Zünd52e20202021-06-16 06:34:285
Nikolay Vitkovd38bb9f2025-04-22 17:21:376 return `
Simon Zünd52e20202021-06-16 06:34:287No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
8Please check for typing mistakes in the pattern.
Jack Franklin3710bbf2022-04-21 08:31:209`.trimStart();
Simon Zünd52e20202021-06-16 06:34:2810};