1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-28 21:35:34 +00:00
notes/node_modules/stylelint/lib/utils/configurationError.js

12 lines
228 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
/* @flow */
"use strict"
/**
* Create configurationError from text and set CLI exit code
*/
module.exports = function (text/*: string */)/* Object */ {
const err/*: Object*/ = new Error(text)
err.code = 78
return err
}