UNPKG

273 BJavaScriptView Raw
1"use strict";
2
3module.exports = function(it) {
4 const { pattern, globDisabled } = it;
5
6 return `
7No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
8Please check for typing mistakes in the pattern.
9`.trimStart();
10};