.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / configurationError.js
1 /* @flow */
2 "use strict";
3
4 /**
5  * Create configurationError from text and set CLI exit code
6  */
7 module.exports = function(text /*: string */) /* Object */ {
8   const err /*: Object*/ = new Error(text);
9   err.code = 78;
10   return err;
11 };