* Build a GitHub markdown warning alert line. * @param {string} title * @param {string} message * @returns {string}
(title, message)
| 75 | * @returns {string} |
| 76 | */ |
| 77 | function buildWarningAlertLine(title, message) { |
| 78 | return `\n> [!WARNING]\n> **${title}**: ${message}\n`; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Render an allowed-files error using progressive disclosure for the file list. |
no outgoing calls
no test coverage detected