blob: 50e483bc1a3f35dc67d508bfd75746d3aae06a5e [file] [log] [blame]
"use strict";
module.exports = function (it) {
const { pattern, globDisabled } = it;
return `
No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
Please check for typing mistakes in the pattern.
`.trimStart();
};