UNPKG

stylelint

Version:
12 lines (11 loc) 246 B
/** * Create configurationError from text and set CLI exit code * * @param {string} text * @return {Error} - The error, with text and exit code */ export default function (text) { const err = new Error(text) err.code = 78 return err }