]> git.proxmox.com Git - pve-eslint.git/blame - eslint/messages/file-not-found.js
import 8.23.1 source
[pve-eslint.git] / eslint / messages / file-not-found.js
CommitLineData
5422a9cc
TL
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.
8f9d1d4d 9`.trimStart();
5422a9cc 10};