mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-08-13 17:22:29 +00:00
12 lines
162 B
JavaScript
12 lines
162 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(it) {
|
|
const { path, message } = it;
|
|
|
|
return `
|
|
Failed to read JSON file at ${path}:
|
|
|
|
${message}
|
|
`.trimStart();
|
|
};
|